source: HiSusy/trunk/Delphes-3.0.0/modules/EnergySmearing.h @ 1

Last change on this file since 1 was 1, checked in by zerwas, 11 years ago

first import of structure, PYTHIA8 and DELPHES

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