/[PAMELA software]/PamVMC/aux/spectra_generator/PrimaryInfo.h
ViewVC logotype

Annotation of /PamVMC/aux/spectra_generator/PrimaryInfo.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations) (download)
Fri Jun 12 18:53:40 2009 UTC (15 years, 6 months ago) by pam-rm2
Branch: MAIN
CVS Tags: v1r0, HEAD
File MIME type: text/plain
*** empty log message ***

1 pam-rm2 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