ImprovedOutputFile
Timing
dual_readout
llp
Last change
on this file since 9fb48ad was fa33983, checked in by Pavel Demin <pavel.demin@…>, 10 years ago |
add PUPPI and RunPUPPI module
|
-
Property mode
set to
100644
|
File size:
1.4 KB
|
Rev | Line | |
---|
[fa33983] | 1 | #ifndef RunPUPPI_h
|
---|
| 2 | #define RunPUPPI_h
|
---|
| 3 |
|
---|
| 4 | #include "classes/DelphesModule.h"
|
---|
| 5 | #include <vector>
|
---|
| 6 |
|
---|
| 7 | class TObjArray;
|
---|
| 8 | class TIterator;
|
---|
| 9 |
|
---|
| 10 |
|
---|
| 11 | class RunPUPPI: public DelphesModule {
|
---|
| 12 |
|
---|
| 13 | public:
|
---|
| 14 |
|
---|
| 15 | RunPUPPI();
|
---|
| 16 | ~RunPUPPI();
|
---|
| 17 |
|
---|
| 18 | void Init();
|
---|
| 19 | void Process();
|
---|
| 20 | void Finish();
|
---|
| 21 |
|
---|
| 22 | private:
|
---|
| 23 |
|
---|
| 24 | TIterator *fItTrackInputArray;
|
---|
| 25 | TIterator *fItNeutralInputArray; //!
|
---|
| 26 | TIterator *fPVItInputArray; //!
|
---|
| 27 |
|
---|
| 28 | const TObjArray *fTrackInputArray;
|
---|
| 29 | const TObjArray *fNeutralInputArray; //!
|
---|
| 30 | const TObjArray *fPVInputArray; //!
|
---|
| 31 |
|
---|
| 32 | // puppi parameters
|
---|
| 33 | float fMinPuppiWeight;
|
---|
| 34 | bool fUseExp;
|
---|
| 35 |
|
---|
| 36 | std::vector<float> fEtaMinBin ;
|
---|
| 37 | std::vector<float> fEtaMaxBin ;
|
---|
| 38 | std::vector<float> fPtMinBin ;
|
---|
| 39 | std::vector<float> fConeSizeBin ;
|
---|
| 40 | std::vector<float> fRMSPtMinBin ;
|
---|
| 41 | std::vector<float> fRMSScaleFactorBin ;
|
---|
| 42 | std::vector<float> fNeutralMinEBin;
|
---|
| 43 | std::vector<float> fNeutralPtSlope;
|
---|
| 44 | std::vector<bool> fApplyCHS;
|
---|
| 45 | std::vector<bool> fUseCharged;
|
---|
| 46 | std::vector<bool> fApplyLowPUCorr;
|
---|
| 47 | std::vector<int> fMetricId;
|
---|
| 48 |
|
---|
| 49 | TObjArray *fOutputArray;
|
---|
| 50 | TObjArray *fOutputTrackArray;
|
---|
| 51 | TObjArray *fOutputNeutralArray;
|
---|
| 52 |
|
---|
| 53 | ClassDef(RunPUPPI, 1)
|
---|
| 54 | };
|
---|
| 55 |
|
---|
| 56 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.