]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSresponseSSD.h
Removing obsolete macros
[u/mrichter/AliRoot.git] / ITS / AliITSresponseSSD.h
index 350d43427d41304acb2c658eb32748f816c4e4d3..522178e6d4426746110a90c022c8470c5925982b 100644 (file)
@@ -12,6 +12,7 @@ class AliITSresponseSSD : public AliITSresponse {
 
  public:
     AliITSresponseSSD();
+    AliITSresponseSSD(const char *dataType);
     virtual ~AliITSresponseSSD();
     AliITSresponseSSD(const AliITSresponseSSD &source); // copy constructor
     AliITSresponseSSD& operator=(const AliITSresponseSSD &source); // ass. op.
@@ -77,15 +78,19 @@ class AliITSresponseSSD : public AliITSresponse {
        // Get sigmas for the charge spread 
        sP=fSigmaP; sN=fSigmaN;
     }
-    virtual void SetADCpereV(Float_t a=50./30000.0){ // Sets eV to ADC value
+    virtual void SetADCpereV(Float_t a=50./30000.0){ // Sets electron-hole
+       // pairs to ADC value conversion factor are rather arbitrary
+       // (need tuning) minimum ionizing particle--> ~30000 pairs--> ADC
+       // channel 50
        fADCpereV = a;
     }
-    virtual Double_t DEvToADC(Double_t eV){ // Converts eV to ADC value
-       // conversion factor are rather arbitrary (need tuning)
+    virtual Double_t DEvToADC(Double_t eV){ // Converts electron-hole pairs to
+       // ADC value conversion factor are rather arbitrary (need tuning)
        // minimum ionizing particle--> ~30000 pairs--> ADC channel 50
        return eV*fADCpereV;
     }
-    virtual Int_t IEvToADC(Double_t eV){ // Converts eV to ADC value
+    virtual Int_t IEvToADC(Double_t eV){ // Converts electron-hole pairs to
+       // ADC value
        return ((Int_t) DEvToADC(eV));
     }
   
@@ -109,10 +114,3 @@ class AliITSresponseSSD : public AliITSresponse {
     ClassDef(AliITSresponseSSD,1) //Response class for SSD
 };
 #endif
-
-
-
-
-
-
-