FairRoot/PandaRoot
PndLmdTrackQ.cxx
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // ----- PndTrackLmdQ source file -----
3 // ----- Created 18/06/2013 by A.Karavdina -----
4 // -------------------------------------------------------------------------
5 
6 #include "PndLmdTrackQ.h"
7 // C/C++ Headers ----------------------
8 #include <iostream>
9 
10 // Collaborating Class Headers --------
11 #include "FairRootManager.h"
12 #include "TClonesArray.h"
13 #include "PndLinTrack.h"
14 #include "TrackData/PndTrackCand.h"
15 #include "PndSdsHit.h"
16 #include "PndSdsMCPoint.h"
18 #include "PndTrack.h"
19 #include "PndSdsClusterPixel.h"
20 #include "PndSdsDigiPixel.h"
21 #include "TFile.h"
22 #include "TLorentzVector.h"
23 #include "FairTrackParH.h"
24 #include "PndMCTrack.h"
25 #include <TMath.h>
26 #include <TVector3.h>
27 #include <TRandom2.h>
28 //#include <TStyle.h>
29 //#include <TCanvas.h>
30 #include <TPolyLine3D.h>
31 #include <Math/Vector3D.h>
32 #include "TH2D.h"
33 #include "TH1D.h"
34 #include "TH2F.h"
35 #include "TH1F.h"
36 #include "TCanvas.h"
37 using namespace ROOT::Math;
38 using namespace std;
39 
40 PndLmdTrackQ::PndLmdTrackQ(): fXrecLMD(0), fYrecLMD(0), fZrecLMD(0),
41  fThetarecLMD(0), fPhirecLMD(0), fXrec(0), fYrec (0), fZrec(0),
42  fThetarec(0), fPhirec(0), fMomrec(0),
43  fXmc(0), fYmc (0), fZmc (0), fThetamc (0), fPhimc(0), fMommc(0),
44  fXmcLMD(0), fYmcLMD (0), fZmcLMD (0), fThetamcLMD (0), fPhimcLMD(0), fMommcLMD(0),
45  fchi2LMD(0), fTrkRecStatus(0), fSecondary(0), fPDGcode(0), fnumMChits(0), fnumMCdoublehits(0)
46 {
47 }
48 
49 PndLmdTrackQ::PndLmdTrackQ(double Plab): fXrecLMD(0), fYrecLMD(0), fZrecLMD(0),
50  fThetarecLMD(0), fPhirecLMD(0), fXrec(0), fYrec (0), fZrec(0),
51  fThetarec(0), fPhirec(0), fMomrec(0),
52  fXmc(0), fYmc (0), fZmc (0), fThetamc (0), fPhimc(0),
53  fXmcLMD(0), fYmcLMD (0), fZmcLMD (0), fThetamcLMD (0), fPhimcLMD(0), fMommcLMD(0),
54  fchi2LMD(0), fTrkRecStatus(0), fSecondary(0), fPDGcode(0), fnumMChits(0), fnumMCdoublehits(0)
55 {
56  fMommc = Plab;
57 }
58 
60 {
61 }
Double_t fMommc
Definition: PndLmdTrackQ.h:208