Last change
on this file since 1277 was 1267, checked in by Pavel Demin, 11 years ago |
added UsePTSum and PTSumMax parameters to the Isolation module
|
-
Property svn:keywords
set to
Id Revision Date
|
File size:
1.1 KB
|
Rev | Line | |
---|
[694] | 1 | #ifndef Isolation_h
|
---|
| 2 | #define Isolation_h
|
---|
| 3 |
|
---|
[814] | 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
|
---|
[1028] | 9 | * the transverse momenta fraction within (PTRatioMin, PTRatioMax].
|
---|
[814] | 10 | *
|
---|
| 11 | * $Date: 2013-08-19 13:40:54 +0000 (Mon, 19 Aug 2013) $
|
---|
| 12 | * $Revision: 1267 $
|
---|
| 13 | *
|
---|
| 14 | *
|
---|
| 15 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 16 | *
|
---|
| 17 | */
|
---|
| 18 |
|
---|
[694] | 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 |
|
---|
[894] | 39 | Double_t fDeltaRMax;
|
---|
[1028] | 40 |
|
---|
[894] | 41 | Double_t fPTRatioMax;
|
---|
[694] | 42 |
|
---|
[1267] | 43 | Double_t fPTSumMax;
|
---|
| 44 |
|
---|
| 45 | Bool_t fUsePTSum;
|
---|
| 46 |
|
---|
[694] | 47 | IsolationClassifier *fClassifier; //!
|
---|
[1028] | 48 |
|
---|
[694] | 49 | ExRootFilter *fFilter;
|
---|
| 50 |
|
---|
| 51 | TIterator *fItIsolationInputArray; //!
|
---|
[1028] | 52 |
|
---|
[694] | 53 | TIterator *fItCandidateInputArray; //!
|
---|
| 54 |
|
---|
| 55 | const TObjArray *fIsolationInputArray; //!
|
---|
[1028] | 56 |
|
---|
[694] | 57 | const TObjArray *fCandidateInputArray; //!
|
---|
[1028] | 58 |
|
---|
[1008] | 59 | const TObjArray *fRhoInputArray; //!
|
---|
[694] | 60 |
|
---|
| 61 | TObjArray *fOutputArray; //!
|
---|
| 62 |
|
---|
| 63 | ClassDef(Isolation, 1)
|
---|
| 64 | };
|
---|
| 65 |
|
---|
| 66 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.