ImprovedOutputFile
Timing
dual_readout
llp
Rev | Line | |
---|
[d7d2da3] | 1 | #ifndef Isolation_h
|
---|
| 2 | #define Isolation_h
|
---|
| 3 |
|
---|
| 4 | /** \class Isolation
|
---|
| 5 | *
|
---|
| 6 | * Sums transverse momenta of isolation objects (tracks, calorimeter towers, etc)
|
---|
| 7 | * within a DeltaR cone around a candidate and calculates fraction of this sum
|
---|
| 8 | * to the candidate's transverse momentum. outputs candidates that have
|
---|
| 9 | * the transverse momenta fraction within (PTRatioMin, PTRatioMax].
|
---|
| 10 | *
|
---|
| 11 | * $Date$
|
---|
| 12 | * $Revision$
|
---|
| 13 | *
|
---|
| 14 | *
|
---|
| 15 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 16 | *
|
---|
| 17 | */
|
---|
| 18 |
|
---|
| 19 | #include "classes/DelphesModule.h"
|
---|
| 20 |
|
---|
| 21 | class TObjArray;
|
---|
| 22 |
|
---|
| 23 | class ExRootFilter;
|
---|
| 24 | class IsolationClassifier;
|
---|
| 25 |
|
---|
| 26 | class Isolation: public DelphesModule
|
---|
| 27 | {
|
---|
| 28 | public:
|
---|
| 29 |
|
---|
| 30 | Isolation();
|
---|
| 31 | ~Isolation();
|
---|
| 32 |
|
---|
| 33 | void Init();
|
---|
| 34 | void Process();
|
---|
| 35 | void Finish();
|
---|
| 36 |
|
---|
| 37 | private:
|
---|
| 38 |
|
---|
| 39 | Double_t fDeltaRMax;
|
---|
| 40 |
|
---|
| 41 | Double_t fPTRatioMax;
|
---|
| 42 |
|
---|
[b286067] | 43 | Double_t fPTSumMax;
|
---|
| 44 |
|
---|
| 45 | Bool_t fUsePTSum;
|
---|
| 46 |
|
---|
[d7d2da3] | 47 | IsolationClassifier *fClassifier; //!
|
---|
| 48 |
|
---|
| 49 | ExRootFilter *fFilter;
|
---|
| 50 |
|
---|
| 51 | TIterator *fItIsolationInputArray; //!
|
---|
| 52 |
|
---|
| 53 | TIterator *fItCandidateInputArray; //!
|
---|
| 54 |
|
---|
[e9023b9] | 55 | TIterator *fItRhoInputArray; //!
|
---|
| 56 |
|
---|
[d7d2da3] | 57 | const TObjArray *fIsolationInputArray; //!
|
---|
| 58 |
|
---|
| 59 | const TObjArray *fCandidateInputArray; //!
|
---|
| 60 |
|
---|
| 61 | const TObjArray *fRhoInputArray; //!
|
---|
| 62 |
|
---|
| 63 | TObjArray *fOutputArray; //!
|
---|
| 64 |
|
---|
| 65 | ClassDef(Isolation, 1)
|
---|
| 66 | };
|
---|
| 67 |
|
---|
| 68 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.