1 |
#ifndef PAMVMCPARTICLE_H |
2 |
#define PAMVMCPARTICLE_H |
3 |
|
4 |
#include <TParticle.h> |
5 |
|
6 |
class PamVMCParticle: public TParticle{ |
7 |
|
8 |
public: |
9 |
PamVMCParticle():TParticle(){; } |
10 |
PamVMCParticle(Int_t pdg, Int_t status, |
11 |
Int_t mother1, Int_t mother2, |
12 |
Int_t daughter1, Int_t daughter2, |
13 |
Double_t px, Double_t py, Double_t pz, Double_t etot, |
14 |
Double_t vx, Double_t vy, Double_t vz, Double_t time): |
15 |
TParticle(pdg,status,mother1,mother2,daughter1,daughter2,px,py,pz,etot,vx,vy,vz,time){;} |
16 |
// PamVMCParticle(Int_t pdg, Int_t status, |
17 |
// Int_t mother1, Int_t mother2, |
18 |
// Int_t daughter1, Int_t daughter2, |
19 |
// const TLorentzVector &p, |
20 |
// const TLorentzVector &v): |
21 |
//TParticle(pdg,status,mother1, mother2,daughter1,daughter2, p, v); |
22 |
|
23 |
virtual ~PamVMCParticle(){;} |
24 |
|
25 |
virtual void Clear(Option_t * = ""){ this->~PamVMCParticle(); } |
26 |
|
27 |
ClassDef(PamVMCParticle,1) |
28 |
}; |
29 |
#endif // PAMVMCPARTICLE_H |