Fork me on GitHub

source: git/modules/TrackCountingTauTagging.h@ 4a0d9d5

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 4a0d9d5 was 7e227ae, checked in by Michele Selvaggi <michele.selvaggi@…>, 9 years ago

added BitNumber to TauTagging

  • Property mode set to 100644
File size: 1.3 KB
Line 
1#ifndef TrackCountingTauTagging_h
2#define TrackCountingTauTagging_h
3
4/** \class TrackCountingTauTagging
5 *
6 * Determines origin of jet,
7 * applies b-tagging efficiency (miss identification rate) formulas
8 * and sets b-tagging flags
9 *
10 * $Date: 2013-02-22 01:01:36 +0100 (Fri, 22 Feb 2013) $
11 * $Revision: 926 $
12 *
13 *
14 * \author P. Demin - UCL, Louvain-la-Neuve
15 *
16 */
17
18#include "classes/DelphesModule.h"
19
20#include <map>
21
22class TObjArray;
23class DelphesFormula;
24
25class ExRootFilter;
26class TrackCountingTauTaggingPartonClassifier;
27
28class TrackCountingTauTagging: public DelphesModule
29{
30public:
31
32 TrackCountingTauTagging();
33 ~TrackCountingTauTagging();
34
35 void Init();
36 void Process();
37 void Finish();
38
39private:
40
41 Int_t fBitNumber;
42
43 Double_t fDeltaR;
44 Double_t fDeltaRTrack;
45 Double_t fTrackPTMin;
46
47 std::map< Int_t, DelphesFormula * > fEfficiencyMap; //!
48
49 TrackCountingTauTaggingPartonClassifier *fClassifier; //!
50
51 ExRootFilter *fFilter;
52
53 TIterator *fItPartonInputArray; //!
54
55 TIterator *fItTrackInputArray; //!
56
57 TIterator *fItJetInputArray; //!
58
59 const TObjArray *fParticleInputArray; //!
60
61 const TObjArray *fTrackInputArray; //!
62
63 const TObjArray *fPartonInputArray; //!
64
65 const TObjArray *fJetInputArray; //!
66
67 ClassDef(TrackCountingTauTagging, 1)
68};
69
70#endif
Note: See TracBrowser for help on using the repository browser.