]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALSimParam.h
Remove unused old geometry definition classes
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALSimParam.h
index cd4889ed55f7d19df8f3a2ad583d761ea0d44921..34844789cc2187d87ac0f79d534c4b08db8fb59b 100644 (file)
@@ -26,14 +26,14 @@ public:
   virtual void Print(Option_t * option="") const ;
 
        //Parameters used in Digitizer
-       Float_t GetDigitThreshold()     const { return fDigitThreshold;}
+       Int_t   GetDigitThreshold()     const { return fDigitThreshold;}
        Float_t GetPinNoise()           const { return fPinNoise;}
-       Float_t GetTimeResolution()     const { return fTimeResolution ; }
+       Double_t GetTimeResolution()    const { return fTimeResolution ; }
        Int_t   GetNADCEC()             const { return fNADCEC ; }
        Int_t   GetMeanPhotonElectron() const { return fMeanPhotonElectron ; }
-       void    SetDigitThreshold(Float_t val)  { fDigitThreshold     = val ; }
+       void    SetDigitThreshold(Int_t val)    { fDigitThreshold     = val ; }
        void    SetPinNoise(Float_t val)        { fPinNoise           = val ; }
-       void    SetTimeResolution(Float_t val)  { fTimeResolution     = val ; }
+       void    SetTimeResolution(Double_t val) { fTimeResolution     = val ; }
        void    SetNADCED(Int_t val)            { fNADCEC             = val ; }
        void    SetMeanPhotonElectron(Int_t val){ fMeanPhotonElectron = val ; }
 
@@ -45,9 +45,6 @@ public:
        void    SetB(Float_t val)                  { fB               = val ; }
        void    SetECPrimaryThreshold(Float_t val) { fECPrimThreshold = val ;}
 
-private:
-
-  AliEMCALSimParam(Int_t i); //True constructor which should be called by GetInstance()
 
 private:
 
@@ -55,10 +52,10 @@ private:
   static AliEMCALSimParam * fgSimParam ; // pointer to the unique instance of the class
 
        // Digitizer
-       Float_t fDigitThreshold  ;      // Threshold for storing digits in EMC
+       Int_t   fDigitThreshold  ;      // Threshold for storing digits in EMC
        Int_t   fMeanPhotonElectron ;   // number of photon electrons per GeV deposited energy 
        Float_t fPinNoise ;             // Electronics noise in EMC
-       Float_t fTimeResolution ;       // Time resolution of FEE electronics
+       Double_t fTimeResolution ;      // Time resolution of FEE electronics
        //Float_t fTimeThreshold ;        // Threshold to start timing for given crystall
        //Float_t fTimeSignalLength ;     // Length of the timing signal 
        Int_t   fNADCEC ;               // number of channels in EC section ADC
@@ -68,7 +65,7 @@ private:
        Float_t fB ;                     // Slope Digitizition parameters
        Float_t fECPrimThreshold ;       // To store primary if EC Shower Elos > threshold
                
-  ClassDef(AliEMCALSimParam,1)
+  ClassDef(AliEMCALSimParam,2)
 };
 
 #endif