Parent Directory
|
Revision Log
Initial revision
| 1 | formato | 1.1 | #ifndef PrimaryInfo_h |
| 2 | #define PrimaryInfo_h | ||
| 3 | #include <TObject.h> | ||
| 4 | |||
| 5 | struct PrimaryInfo: public TObject { | ||
| 6 | |||
| 7 | |||
| 8 | Double_t X0, Y0, Z0, P0, Theta, Phi; | ||
| 9 | Int_t PDG; | ||
| 10 | |||
| 11 | |||
| 12 | PrimaryInfo(): X0(0.), Y0(0.), Z0(0.), P0(0.), Theta(0.), Phi(0.), PDG(0){}; | ||
| 13 | PrimaryInfo(Double_t x0, Double_t y0, Double_t z0, Double_t p0, Double_t theta, Double_t phi, Int_t pdg): | ||
| 14 | X0(x0), Y0(y0), Z0(z0), P0(p0), Theta(theta), Phi(phi), PDG(pdg){}; | ||
| 15 | |||
| 16 | ClassDef(PrimaryInfo,1); | ||
| 17 | }; | ||
| 18 | |||
| 19 | #endif |
| ViewVC Help | |
| Powered by ViewVC 1.1.23 |