HARPO  5.1.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TpcSimDriftChamber.h
Go to the documentation of this file.
1 #ifndef TPCSIMDRIFTCHAMBER_H
2 #define TPCSIMDRIFTCHAMBER_H
3 
4 #include "TObject.h"
5 //#include "TParticle.h"
6 #include "TClonesArray.h"
7 
8 //#include "TpcSimTrack.h"
9 
10 class TpcSimDriftChamber : public TObject {
11 
12  public:
13 
15  virtual ~TpcSimDriftChamber();
16 
17  Int_t DriftElectron(Double_t x0, Double_t y0, Double_t z0, Double_t t0, Double_t &xEnd, Double_t &yEnd, Double_t &zEnd, Double_t &tEnd);
18 
19 
20  private:
21 
22  Double_t fDiffX;
23  Double_t fDiffY;
24  Double_t fDiffZ;
25 
26  Double_t fDriftVelocity;
27 
28  Double_t fElectronCapture;
29 
30  Double_t fZReadout;
31  Double_t fLengthTpc;
32 
34 };
35 
36 #endif
Int_t DriftElectron(Double_t x0, Double_t y0, Double_t z0, Double_t t0, Double_t &xEnd, Double_t &yEnd, Double_t &zEnd, Double_t &tEnd)
ClassDef(TpcSimDriftChamber, 1)