]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSresponseSPD.cxx
For Pythia with tune don't switch off MI in ConfigHeavyFlavor
[u/mrichter/AliRoot.git] / ITS / AliITSresponseSPD.cxx
index 18f3d447e623a3e6d8d8feb441b5160a9f7f6fbd..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():
+  AliITSresponse(),
+fCouplOpt(0),
+fEccDiff(0){
 
-AliITSresponseSPD::AliITSresponseSPD()
-{
   // constructor
-   SetThresholds();
-   SetNoiseParam();
-   SetDataType();
-}
+  SetCouplingOption(fgkCouplingOptDefault);
+  SetDiffCoeff(fgkDiffCoeffDefault,0.);
+  SetSigmaDiffusionAsymmetry(fgkEccentricityDiffDefault);
 
+}