Fork me on GitHub

source: git/modules/ImpactParameterSmearing.h@ a6db2d6

ImprovedOutputFile Timing dual_readout llp
Last change on this file since a6db2d6 was a0431dc, checked in by mselvaggi <mselvaggi@…>, 10 years ago

track counting btagging

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