]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSresponseSPD.cxx
fix compilation
[u/mrichter/AliRoot.git] / ITS / AliITSresponseSPD.cxx
index 483b9844c9c496a38855381929c4c3dacd3174b6..2dcebe7c2a98a5ca20fe1ad02cc966d62ec8bc87 100644 (file)
  * about the suitability of this software for any purpose. It is          *
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
-
-#include <TMath.h>
+///////////////////////////////////////////////////////////////////////////
+//  Base Response class forITS                      
+//  It is used to set static data members           
+//  connected to parameters equal for all           
+//  the SPD modules                                 
+//
+//  Modified by D. Elia, G.E. Bruno
+//  March-April 2006
+//  September   2007: Coupling params taken out
+//                    left in AliITSCalibrationSPD only
+//
+///////////////////////////////////////////////////////////////////////////
 
 #include "AliITSresponseSPD.h"
 
+const Float_t AliITSresponseSPD::fgkDiffCoeffDefault = 0.; //change this
+const TString AliITSresponseSPD::fgkCouplingOptDefault = "old";
+const Float_t AliITSresponseSPD::fgkEccentricityDiffDefault = 0.85;
+
 ClassImp(AliITSresponseSPD)    
 //______________________________________________________________________
-AliITSresponseSPD::AliITSresponseSPD(){
+AliITSresponseSPD::AliITSresponseSPD():
+  AliITSresponse(),
+fCouplOpt(0),
+fEccDiff(0){
+
   // constructor
+  SetCouplingOption(fgkCouplingOptDefault);
+  SetDiffCoeff(fgkDiffCoeffDefault,0.);
+  SetSigmaDiffusionAsymmetry(fgkEccentricityDiffDefault);
 
-   SetThresholds();
-   SetNoiseParam();
-   SetDataType();
-   SetFractionDead();
 }
-