Last change
on this file since 1383 was 1367, checked in by Michele Selvaggi, 11 years ago |
track counting btagging
|
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 |
|
---|
17 | class TIterator;
|
---|
18 | class TObjArray;
|
---|
19 | class DelphesFormula;
|
---|
20 |
|
---|
21 | class ImpactParameterSmearing: public DelphesModule
|
---|
22 | {
|
---|
23 | public:
|
---|
24 |
|
---|
25 | ImpactParameterSmearing();
|
---|
26 | ~ImpactParameterSmearing();
|
---|
27 |
|
---|
28 | void Init();
|
---|
29 | void Process();
|
---|
30 | void Finish();
|
---|
31 |
|
---|
32 | private:
|
---|
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.