EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FairVolume.cxx
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file FairVolume.cxx
1 // -------------------------------------------------------------------------
2 // ----- FairVolume source file -----
3 // ----- Created 12/01/04 by M. Al-Turany -----
4 // -------------------------------------------------------------------------
5 
6 
7 
8 #include "FairVolume.h"
9 
10 //_____________________________________________________________________________
12  : TNamed(),
13  // fName(""), /**Volume Name in MC*/
14  fRealName(""),
15  fVolumeId(-1),
16  fModId(-1),
17  fMCid(-1),
18  fCopyNo(-1),
19  fMotherId(-1),
20  fMotherCopyNo(-1),
21  fModule(NULL),
22  fNode(NULL)
23 {
24 
25 
26 }
27 
28 //_____________________________________________________________________________
29 FairVolume::FairVolume(TString name, Int_t id, Int_t ModId, FairModule* fMod)
30  :TNamed(name,name),
31  // fName(name),
32  fRealName(""),
33  fVolumeId(id),
34  fModId(ModId),
35  fMCid(-1),
36  fCopyNo(-1),
37  fMotherId(0),
38  fMotherCopyNo(0),
39  fModule(fMod),
40  fNode(NULL)
42 {
43 
44 }
45 
46 
47 //_____________________________________________________________________________
49 {
50  //
51 
52 }
54