ImprovedOutputFile
Timing
dual_readout
llp
Last change
on this file since a0431dc was a0431dc, checked in by mselvaggi <mselvaggi@…>, 11 years ago |
track counting btagging
|
-
Property mode
set to
100644
|
File size:
727 bytes
|
Rev | Line | |
---|
[a0431dc] | 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.