Changeset 341014c in git for modules/TauTagging.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/TauTagging.h
r45e58be r341014c 30 30 */ 31 31 32 #include "ExRootAnalysis/ExRootClassifier.h" 33 #include "ExRootAnalysis/ExRootFilter.h" 34 #include "ExRootAnalysis/ExRootResult.h" 32 35 #include "classes/DelphesModule.h" 33 #include "ExRootAnalysis/ExRootResult.h"34 #include "ExRootAnalysis/ExRootFilter.h"35 #include "ExRootAnalysis/ExRootClassifier.h"36 36 37 37 #include <map> … … 46 46 { 47 47 public: 48 49 48 TauTagging(); 50 49 ~TauTagging(); … … 55 54 56 55 private: 57 58 56 Int_t fBitNumber; 59 57 60 58 Double_t fDeltaR; 61 59 62 60 #if !defined(__CINT__) && !defined(__CLING__) 63 std::map< Int_t, DelphesFormula *> fEfficiencyMap; //!61 std::map<Int_t, DelphesFormula *> fEfficiencyMap; //! 64 62 #endif 65 63 66 64 TauTaggingPartonClassifier *fClassifier; //! 67 65 68 66 ExRootFilter *fFilter; 69 67 70 68 TIterator *fItPartonInputArray; //! 71 69 72 70 TIterator *fItJetInputArray; //! 73 71 … … 75 73 76 74 const TObjArray *fPartonInputArray; //! 77 75 78 76 const TObjArray *fJetInputArray; //! 79 77 … … 81 79 }; 82 80 83 84 81 //------------------------------------------------------------------------------ 85 82 86 class TauTaggingPartonClassifier 83 class TauTaggingPartonClassifier: public ExRootClassifier 87 84 { 88 85 public: 89 90 86 TauTaggingPartonClassifier(const TObjArray *array); 91 87 … … 97 93 }; 98 94 99 100 95 #endif
Note:
See TracChangeset
for help on using the changeset viewer.