X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=ITS%2FAliITSresponseSPD.cxx;h=2dcebe7c2a98a5ca20fe1ad02cc966d62ec8bc87;hb=48b9a0e57865188bdea89ee8dc8a83d040bee614;hp=5df51cb142de0c4d4b816f6ec3f29a2054fc423b;hpb=fcf95fc7a1a40644de272f60ebe2a9059a8ba9a7;p=u%2Fmrichter%2FAliRoot.git diff --git a/ITS/AliITSresponseSPD.cxx b/ITS/AliITSresponseSPD.cxx index 5df51cb142d..2dcebe7c2a9 100644 --- a/ITS/AliITSresponseSPD.cxx +++ b/ITS/AliITSresponseSPD.cxx @@ -12,26 +12,35 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ -////////////////////////////////////////////////////// -// Base Response class forITS // -// It is used to set static data members // -// connected to parameters equal for all // -// the SPD modules // -////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////// +// 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.; -const Float_t AliITSresponseSPD::fgkCouplingColDefault = 0; -const Float_t AliITSresponseSPD::fgkCouplingRowDefault = 0; +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(){ - + AliITSresponse(), +fCouplOpt(0), +fEccDiff(0){ // constructor - SetCouplingParam(fgkCouplingColDefault,fgkCouplingRowDefault); + SetCouplingOption(fgkCouplingOptDefault); SetDiffCoeff(fgkDiffCoeffDefault,0.); + SetSigmaDiffusionAsymmetry(fgkEccentricityDiffDefault); }