ImprovedOutputFile
Timing
dual_readout
llp
Last change
on this file since be2222c was c5e72d8, checked in by Pavel Demin <pavel.demin@…>, 10 years ago |
remove unneeded 'class DelphesFormula;' declarations and add ifndef expressions for CLING
|
-
Property mode
set to
100644
|
File size:
633 bytes
|
Rev | Line | |
---|
[af88093] | 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 |
|
---|
| 19 | class TimeSmearing: public DelphesModule
|
---|
| 20 | {
|
---|
| 21 | public:
|
---|
| 22 |
|
---|
| 23 | TimeSmearing();
|
---|
| 24 | ~TimeSmearing();
|
---|
| 25 |
|
---|
| 26 | void Init();
|
---|
| 27 | void Process();
|
---|
| 28 | void Finish();
|
---|
| 29 |
|
---|
| 30 | private:
|
---|
| 31 |
|
---|
| 32 | Double_t fTimeResolution;
|
---|
| 33 |
|
---|
| 34 | TIterator *fItInputArray; //!
|
---|
| 35 |
|
---|
| 36 | const TObjArray *fInputArray; //!
|
---|
| 37 |
|
---|
| 38 | TObjArray *fOutputArray; //!
|
---|
| 39 |
|
---|
| 40 | ClassDef(TimeSmearing, 1)
|
---|
| 41 | };
|
---|
| 42 |
|
---|
| 43 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.