ImprovedOutputFile
Timing
dual_readout
llp
Last change
on this file since 4600a41 was d7d2da3, checked in by pavel <pavel@…>, 12 years ago |
move branches/ModularDelphes to trunk
|
-
Property mode
set to
100644
|
File size:
979 bytes
|
Line | |
---|
1 | #ifndef TauTagging_h
|
---|
2 | #define TauTagging_h
|
---|
3 |
|
---|
4 | /** \class TauTagging
|
---|
5 | *
|
---|
6 | * Determines origin of jet,
|
---|
7 | * applies b-tagging efficiency (miss identification rate) formulas
|
---|
8 | * and sets b-tagging flags
|
---|
9 | *
|
---|
10 | * $Date$
|
---|
11 | * $Revision$
|
---|
12 | *
|
---|
13 | *
|
---|
14 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
15 | *
|
---|
16 | */
|
---|
17 |
|
---|
18 | #include "classes/DelphesModule.h"
|
---|
19 |
|
---|
20 | #include <map>
|
---|
21 |
|
---|
22 | class TObjArray;
|
---|
23 | class DelphesFormula;
|
---|
24 |
|
---|
25 | class ExRootFilter;
|
---|
26 | class TauTaggingPartonClassifier;
|
---|
27 |
|
---|
28 | class TauTagging: public DelphesModule
|
---|
29 | {
|
---|
30 | public:
|
---|
31 |
|
---|
32 | TauTagging();
|
---|
33 | ~TauTagging();
|
---|
34 |
|
---|
35 | void Init();
|
---|
36 | void Process();
|
---|
37 | void Finish();
|
---|
38 |
|
---|
39 | private:
|
---|
40 |
|
---|
41 | Double_t fDeltaR;
|
---|
42 |
|
---|
43 | std::map< Int_t, DelphesFormula * > fEfficiencyMap; //!
|
---|
44 |
|
---|
45 | TauTaggingPartonClassifier *fClassifier; //!
|
---|
46 |
|
---|
47 | ExRootFilter *fFilter;
|
---|
48 |
|
---|
49 | TIterator *fItPartonInputArray; //!
|
---|
50 |
|
---|
51 | TIterator *fItJetInputArray; //!
|
---|
52 |
|
---|
53 | const TObjArray *fParticleInputArray; //!
|
---|
54 |
|
---|
55 | const TObjArray *fPartonInputArray; //!
|
---|
56 |
|
---|
57 | const TObjArray *fJetInputArray; //!
|
---|
58 |
|
---|
59 | ClassDef(TauTagging, 1)
|
---|
60 | };
|
---|
61 |
|
---|
62 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.