Fork me on GitHub

source: git/modules/EnergySmearing.h@ d41ba4a

ImprovedOutputFile Timing dual_readout llp
Last change on this file since d41ba4a was d7d2da3, checked in by pavel <pavel@…>, 11 years ago

move branches/ModularDelphes to trunk

  • Property mode set to 100644
File size: 637 bytes
Line 
1#ifndef EnergySmearing_h
2#define EnergySmearing_h
3
4/** \class EnergySmearing
5 *
6 * Performs energy resolution smearing.
7 *
8 * $Date$
9 * $Revision$
10 *
11 *
12 * \author P. Demin - UCL, Louvain-la-Neuve
13 *
14 */
15
16#include "classes/DelphesModule.h"
17
18class TIterator;
19class TObjArray;
20class DelphesFormula;
21
22class EnergySmearing: public DelphesModule
23{
24public:
25
26 EnergySmearing();
27 ~EnergySmearing();
28
29 void Init();
30 void Process();
31 void Finish();
32
33private:
34
35 DelphesFormula *fFormula; //!
36
37 TIterator *fItInputArray; //!
38
39 const TObjArray *fInputArray; //!
40
41 TObjArray *fOutputArray; //!
42
43 ClassDef(EnergySmearing, 1)
44};
45
46#endif
Note: See TracBrowser for help on using the repository browser.