Last change
on this file since 1271 was 1141, checked in by Pavel Demin, 11 years ago |
add EnergyScale
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id Revision Date
|
File size:
634 bytes
|
Rev | Line | |
---|
[1141] | 1 | #ifndef EnergyScale_h
|
---|
| 2 | #define EnergyScale_h
|
---|
| 3 |
|
---|
| 4 | /** \class MomentumSmearing
|
---|
| 5 | *
|
---|
| 6 | * Performs transverse momentum resolution smearing.
|
---|
| 7 | *
|
---|
| 8 | * $Date: 2013-06-25 12:42:33 +0000 (Tue, 25 Jun 2013) $
|
---|
| 9 | * $Revision: 1141 $
|
---|
| 10 | *
|
---|
| 11 | *
|
---|
| 12 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 13 | *
|
---|
| 14 | */
|
---|
| 15 |
|
---|
| 16 | #include "classes/DelphesModule.h"
|
---|
| 17 |
|
---|
| 18 | class TIterator;
|
---|
| 19 | class TObjArray;
|
---|
| 20 | class DelphesFormula;
|
---|
| 21 |
|
---|
| 22 | class EnergyScale: public DelphesModule
|
---|
| 23 | {
|
---|
| 24 | public:
|
---|
| 25 |
|
---|
| 26 | EnergyScale();
|
---|
| 27 | ~EnergyScale();
|
---|
| 28 |
|
---|
| 29 | void Init();
|
---|
| 30 | void Process();
|
---|
| 31 | void Finish();
|
---|
| 32 |
|
---|
| 33 | private:
|
---|
| 34 |
|
---|
| 35 | DelphesFormula *fFormula; //!
|
---|
| 36 |
|
---|
| 37 | TIterator *fItInputArray; //!
|
---|
| 38 |
|
---|
| 39 | const TObjArray *fInputArray; //!
|
---|
| 40 |
|
---|
| 41 | TObjArray *fOutputArray; //!
|
---|
| 42 |
|
---|
| 43 | ClassDef(EnergyScale, 1)
|
---|
| 44 | };
|
---|
| 45 |
|
---|
| 46 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.