Fork me on GitHub

source: git/modules/TimeSmearing.h@ 1381438

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 1381438 was af88093, checked in by mselvaggi <mselvaggi@…>, 11 years ago

add TimeSmearing

  • Property mode set to 100644
File size: 655 bytes
Line 
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
16class TIterator;
17class TObjArray;
18class DelphesFormula;
19
20class TimeSmearing: public DelphesModule
21{
22public:
23
24 TimeSmearing();
25 ~TimeSmearing();
26
27 void Init();
28 void Process();
29 void Finish();
30
31private:
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.