Changeset 341014c in git for modules/VertexFinder.h
- Timestamp:
- Feb 12, 2019, 9:29:17 PM (6 years ago)
- Branches:
- ImprovedOutputFile, Timing, llp, master
- Children:
- 6455202
- Parents:
- 45e58be
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/VertexFinder.h
r45e58be r341014c 10 10 */ 11 11 12 13 12 #include "classes/DelphesModule.h" 14 13 14 #include <map> 15 15 #include <string> 16 16 #include <vector> 17 #include <map>18 17 19 18 class TObjArray; … … 23 22 { 24 23 public: 25 26 24 VertexFinder(); 27 25 ~VertexFinder(); … … 32 30 33 31 private: 34 35 void createSeeds (); 36 void growCluster (const UInt_t); 37 Double_t weight (const UInt_t); 38 void addTrackToCluster (const UInt_t, const UInt_t); 39 void removeTrackFromCluster (const UInt_t, const UInt_t); 32 void createSeeds(); 33 void growCluster(const UInt_t); 34 Double_t weight(const UInt_t); 35 void addTrackToCluster(const UInt_t, const UInt_t); 36 void removeTrackFromCluster(const UInt_t, const UInt_t); 40 37 41 38 Double_t fSigma; … … 52 49 TObjArray *fVertexOutputArray; 53 50 54 std::map<UInt_t, std::map<std::string, Double_t> 55 std::map<UInt_t, std::map<std::string, Int_t> 56 std::map<UInt_t, std::map<std::string, Bool_t> 51 std::map<UInt_t, std::map<std::string, Double_t>> trackIDToDouble; 52 std::map<UInt_t, std::map<std::string, Int_t>> trackIDToInt; 53 std::map<UInt_t, std::map<std::string, Bool_t>> trackIDToBool; 57 54 58 std::map<UInt_t, std::map<std::string, Double_t> 59 std::map<UInt_t, std::map<std::string, Int_t> 60 std::map<UInt_t, std::map<std::string, Bool_t> 61 std::vector<std::pair<UInt_t, Double_t> 62 std::vector<std::pair<UInt_t, Double_t> 55 std::map<UInt_t, std::map<std::string, Double_t>> clusterIDToDouble; 56 std::map<UInt_t, std::map<std::string, Int_t>> clusterIDToInt; 57 std::map<UInt_t, std::map<std::string, Bool_t>> clusterIDToBool; 58 std::vector<std::pair<UInt_t, Double_t>> trackPT; 59 std::vector<std::pair<UInt_t, Double_t>> clusterSumPT2; 63 60 64 61 ClassDef(VertexFinder, 1)
Note:
See TracChangeset
for help on using the changeset viewer.