Fork me on GitHub

source: svn/trunk/modules/TimeSmearing.h@ 1394

Last change on this file since 1394 was 1344, checked in by Michele Selvaggi, 11 years ago

add TimeSmearing

File size: 655 bytes
RevLine 
[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
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.