Fork me on GitHub

Changeset 93da593 in git for modules/UniqueObjectFinder.h


Ignore:
Timestamp:
Sep 11, 2015, 11:52:41 PM (9 years ago)
Author:
Pavel Demin <pavel.demin@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
410f3a2
Parents:
b631c06
Message:

replace map with vector in UniqueObjectFinder

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/UniqueObjectFinder.h

    rb631c06 r93da593  
    3030#include "classes/DelphesModule.h"
    3131
    32 #include <map>
     32#include <vector>
     33#include <utility>
    3334
    3435class TIterator;
     
    4950private:
    5051
    51   Bool_t Unique(Candidate *candidate, std::map< TIterator *, TObjArray * >::iterator itInputMap);
     52  Bool_t Unique(Candidate *candidate, std::vector< std::pair< TIterator *, TObjArray * > >::iterator itInputMap);
    5253
    53   std::map< TIterator *, TObjArray * > fInputMap; //!
     54  std::vector< std::pair< TIterator *, TObjArray * > > fInputMap; //!
    5455
    5556  ClassDef(UniqueObjectFinder, 1)
Note: See TracChangeset for help on using the changeset viewer.