source: trunk/modules/PythiaFix.h@ 18

Last change on this file since 18 was 2, checked in by Pavel Demin, 16 years ago

first commit

File size: 434 bytes
RevLine 
[2]1#ifndef PythiaFix_h
2#define PythiaFix_h
3
4#include "ExRootAnalysis/ExRootModule.h"
5
6class TClonesArray;
7class TIterator;
8
9class PythiaFix: public ExRootModule
10{
11public:
12
13 PythiaFix();
14 ~PythiaFix();
15
16 void Init();
17 void Process();
18 void Finish();
19
20private:
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.