@@ -14,8 +14,6 @@ namespace Base {
1414class Detector : public FairDetector {
1515
1616public:
17- enum Model { test123 = 0 };
18-
1917 Detector (const char * name, Bool_t Active, Int_t DetId = 0 );
2018
2119 // / Default Constructor
@@ -25,53 +23,52 @@ class Detector : public FairDetector {
2523 virtual ~Detector ();
2624
2725 // Module composition
28- virtual void Material (Int_t imat, const char * name, Float_t a, Float_t z, Float_t dens,
29- Float_t radl, Float_t absl, Float_t * buf = 0 , Int_t nwbuf = 0 ) const ;
26+ virtual void Material (Int_t imat, const char * name, Float_t a, Float_t z, Float_t dens, Float_t radl, Float_t absl,
27+ Float_t* buf = 0 , Int_t nwbuf = 0 ) const ;
3028
31- virtual void Mixture (Int_t imat, const char * name, Float_t* a, Float_t* z, Float_t dens,
32- Int_t nlmat, Float_t* wmat) const ;
29+ virtual void Mixture (Int_t imat, const char * name, Float_t* a, Float_t* z, Float_t dens, Int_t nlmat,
30+ Float_t* wmat) const ;
3331
34- virtual void Medium (Int_t numed, const char * name, Int_t nmat, Int_t isvol, Int_t ifield,
35- Float_t fieldm, Float_t tmaxfd, Float_t stemax, Float_t deemax, Float_t epsil,
36- Float_t stmin, Float_t* ubuf = 0 , Int_t nbuf = 0 ) const ;
32+ virtual void Medium (Int_t numed, const char * name, Int_t nmat, Int_t isvol, Int_t ifield, Float_t fieldm,
33+ Float_t tmaxfd, Float_t stemax, Float_t deemax, Float_t epsil, Float_t stmin, Float_t* ubuf = 0 ,
34+ Int_t nbuf = 0 ) const ;
3735
38- // / Define a rotation matrix. Angles are in degrees.
36+ // / Define a rotation matrix. angles are in degrees.
3937 // / \param nmat on output contains the number assigned to the rotation matrix
4038 // / \param theta1 polar angle for axis I
4139 // / \param theta2 polar angle for axis II
4240 // / \param theta3 polar angle for axis III
4341 // / \param phi1 azimuthal angle for axis I
4442 // / \param phi2 azimuthal angle for axis II
4543 // / \param phi3 azimuthal angle for axis III
46- virtual void Matrix (Int_t& nmat, Float_t theta1, Float_t phi1, Float_t theta2, Float_t phi2,
47- Float_t theta3, Float_t phi3) const ;
44+ virtual void Matrix (Int_t& nmat, Float_t theta1, Float_t phi1, Float_t theta2, Float_t phi2, Float_t theta3,
45+ Float_t phi3) const ;
4846
49- static void SetDensityFactor (Float_t density)
47+ static void setDensityFactor (Float_t density)
5048 {
5149 mDensityFactor = density;
5250 }
53- static Float_t GetDensityFactor ()
51+ static Float_t getDensityFactor ()
5452 {
5553 return mDensityFactor ;
5654 }
5755
5856 // / Sets per wrapper volume parameters
59- virtual void DefineWrapperVolume (Int_t id, Double_t rmin, Double_t rmax, Double_t zspan);
57+ virtual void defineWrapperVolume (Int_t id, Double_t rmin, Double_t rmax, Double_t zspan);
6058
6159 // / Books arrays for wrapper volumes
62- virtual void SetNumberOfWrapperVolumes (Int_t n);
60+ virtual void setNumberOfWrapperVolumes (Int_t n);
6361
64- virtual void DefineLayer (Int_t nlay, Double_t phi0, Double_t r, Double_t zlen, Int_t nladd,
65- Int_t nmod, Double_t lthick = 0 ., Double_t dthick = 0 .,
66- UInt_t detType = 0 , Int_t buildFlag = 0 );
62+ virtual void defineLayer (Int_t nlay, Double_t phi0, Double_t r, Double_t zlen, Int_t nladd, Int_t nmod,
63+ Double_t lthick = 0 ., Double_t dthick = 0 ., UInt_t detType = 0 , Int_t buildFlag = 0 );
6764
68- virtual void DefineLayerTurbo (Int_t nlay, Double_t phi0, Double_t r, Double_t zlen, Int_t nladd,
69- Int_t nmod, Double_t width, Double_t tilt, Double_t lthick = 0 .,
70- Double_t dthick = 0 ., UInt_t detType = 0 , Int_t buildFlag = 0 );
65+ virtual void defineLayerTurbo (Int_t nlay, Double_t phi0, Double_t r, Double_t zlen, Int_t nladd, Int_t nmod ,
66+ Double_t width, Double_t tilt, Double_t lthick = 0 ., Double_t dthick = 0 .,
67+ UInt_t detType = 0 , Int_t buildFlag = 0 );
7168
7269protected:
7370 static Float_t mDensityFactor ; // ! factor that is multiplied to all material densities (ONLY for
74- // systematic studies)
71+ // systematic studies)
7572private:
7673 Detector (const Detector&);
7774 Detector& operator =(const Detector&);
0 commit comments