Fork me on GitHub

source: git/modules/AngularSmearing.h@ acf622f

ImprovedOutputFile Timing dual_readout llp
Last change on this file since acf622f was edcf81a, checked in by Michele Selvaggi <michele.selvaggi@…>, 10 years ago

Added AngularSmearing module, and modified FCC card

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