Rev | Line | |
---|
[2] | 1 | #ifndef PythiaFix_h
|
---|
| 2 | #define PythiaFix_h
|
---|
| 3 |
|
---|
| 4 | #include "ExRootAnalysis/ExRootModule.h"
|
---|
| 5 |
|
---|
| 6 | class TClonesArray;
|
---|
| 7 | class TIterator;
|
---|
| 8 |
|
---|
| 9 | class PythiaFix: public ExRootModule
|
---|
| 10 | {
|
---|
| 11 | public:
|
---|
| 12 |
|
---|
| 13 | PythiaFix();
|
---|
| 14 | ~PythiaFix();
|
---|
| 15 |
|
---|
| 16 | void Init();
|
---|
| 17 | void Process();
|
---|
| 18 | void Finish();
|
---|
| 19 |
|
---|
| 20 | private:
|
---|
| 21 |
|
---|
| 22 | void FixDaughters(Int_t indexParticle, Int_t indexMother);
|
---|
| 23 |
|
---|
| 24 | TClonesArray *fBranchParticle; //!
|
---|
| 25 | TIterator *fItBranchParticle; //!
|
---|
| 26 |
|
---|
| 27 | ClassDef(PythiaFix, 1)
|
---|
| 28 | };
|
---|
| 29 |
|
---|
| 30 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.