Fork me on GitHub

source: svn/trunk/modules/ImpactParameterSmearing.h@ 1393

Last change on this file since 1393 was 1367, checked in by Michele Selvaggi, 10 years ago

track counting btagging

File size: 727 bytes
RevLine 
[1367]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.