Changeset d77b51d in git for modules/UniqueObjectFinder.h
- Timestamp:
- Sep 29, 2015, 2:08:10 PM (9 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- a98c7ef
- Parents:
- d870fc5 (diff), 06ec139 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/UniqueObjectFinder.h
rd870fc5 rd77b51d 30 30 #include "classes/DelphesModule.h" 31 31 32 #include <map> 32 #include <vector> 33 #include <utility> 33 34 34 35 class TIterator; … … 49 50 private: 50 51 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); 52 53 53 std:: map< TIterator *, TObjArray *> fInputMap; //!54 std::vector< std::pair< TIterator *, TObjArray * > > fInputMap; //! 54 55 55 56 ClassDef(UniqueObjectFinder, 1)
Note:
See TracChangeset
for help on using the changeset viewer.