Rev | Line | |
---|
[1344] | 1 | #ifndef TimeSmearing_h
|
---|
| 2 | #define TimeSmearing_h
|
---|
| 3 |
|
---|
| 4 | /** \class TimeSmearing
|
---|
| 5 | *
|
---|
| 6 | * Performs transverse time smearing.
|
---|
| 7 | *
|
---|
| 8 | * $Date: 2013-12-12 14:57:44 +0100 (Tue, 12 Dec 2013) $
|
---|
| 9 | *
|
---|
| 10 | * \author Michele Selvaggi - UCL, Louvain-la-Neuve
|
---|
| 11 | *
|
---|
| 12 | */
|
---|
| 13 |
|
---|
| 14 | #include "classes/DelphesModule.h"
|
---|
| 15 |
|
---|
| 16 | class TIterator;
|
---|
| 17 | class TObjArray;
|
---|
| 18 | class DelphesFormula;
|
---|
| 19 |
|
---|
| 20 | class TimeSmearing: public DelphesModule
|
---|
| 21 | {
|
---|
| 22 | public:
|
---|
| 23 |
|
---|
| 24 | TimeSmearing();
|
---|
| 25 | ~TimeSmearing();
|
---|
| 26 |
|
---|
| 27 | void Init();
|
---|
| 28 | void Process();
|
---|
| 29 | void Finish();
|
---|
| 30 |
|
---|
| 31 | private:
|
---|
| 32 |
|
---|
| 33 | Double_t fTimeResolution;
|
---|
| 34 |
|
---|
| 35 | TIterator *fItInputArray; //!
|
---|
| 36 |
|
---|
| 37 | const TObjArray *fInputArray; //!
|
---|
| 38 |
|
---|
| 39 | TObjArray *fOutputArray; //!
|
---|
| 40 |
|
---|
| 41 | ClassDef(TimeSmearing, 1)
|
---|
| 42 | };
|
---|
| 43 |
|
---|
| 44 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.