FairRoot/PandaRoot
PndSttTubeParameters.cxx
Go to the documentation of this file.
1 // PndSttTubeParameters
3 //
4 // Class for tube parameters (object)
5 //
6 // authors: Lia Lavezzi - INFN Pavia (2013)
7 //
9 
10 
11 #include "PndSttTubeParameters.h"
12 #include "TGeoManager.h"
13 #include <iostream>
14 using std::cout;
15 using std::endl;
16 
18  :fTubeID(-1),
19  fHalfLength(0)
20 {
21 }
22 
24  :TObject(tubs),
25  fTubeID(tubs.GetTubeID()),
26  fHalfLength(tubs.GetHalfLength())
27 {
28 }
29 
31  : fTubeID(tubeID),
32  fHalfLength(hl)
33 {
34 }
35 
37 }
38 
40  return fHalfLength;
41 }
42 
44  return fTubeID;
45 }
46 
48 
Double_t
ClassImp(PndAnaContFact)