X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=EMCAL%2FAliEMCALShishKebabModule.cxx;h=46813b0607239c64c16bd273a4dd89ef26b89cf0;hb=18a21c7cf1f8adfe3b24db9f599862712929b1a7;hp=172f948cbc575ced1c5600ab9e8a179a344306f1;hpb=c160eda82ee65fa55e2ed77c28c6d0b23aee5070;p=u%2Fmrichter%2FAliRoot.git diff --git a/EMCAL/AliEMCALShishKebabModule.cxx b/EMCAL/AliEMCALShishKebabModule.cxx index 172f948cbc5..46813b06072 100644 --- a/EMCAL/AliEMCALShishKebabModule.cxx +++ b/EMCAL/AliEMCALShishKebabModule.cxx @@ -36,7 +36,12 @@ ClassImp(AliEMCALShishKebabModule) Double_t AliEMCALShishKebabModule::fgr=0.; //_________________________________________________________________________ -AliEMCALShishKebabModule::AliEMCALShishKebabModule() : TNamed() +AliEMCALShishKebabModule::AliEMCALShishKebabModule() + : TNamed(), + fOK(0), + fA(0.), + fB(0.), + fTheta(0.) { // theta in radians ; first object shold be with theta=pi/2. if(fgGeometry==0) { @@ -51,7 +56,12 @@ AliEMCALShishKebabModule::AliEMCALShishKebabModule() : TNamed() } //_________________________________________________________________________ -AliEMCALShishKebabModule::AliEMCALShishKebabModule(AliEMCALShishKebabModule &leftNeighbor) : TNamed() +AliEMCALShishKebabModule::AliEMCALShishKebabModule(AliEMCALShishKebabModule &leftNeighbor) + : TNamed(), + fOK(0), + fA(0.), + fB(0.), + fTheta(0.) { // 22-sep-04 TObject::SetUniqueID(leftNeighbor.GetUniqueID()+1); @@ -59,14 +69,14 @@ AliEMCALShishKebabModule::AliEMCALShishKebabModule(AliEMCALShishKebabModule &lef } //_________________________________________________________________________ -AliEMCALShishKebabModule::AliEMCALShishKebabModule(const AliEMCALShishKebabModule& mod) : TNamed(mod.GetName(),mod.GetTitle()) +AliEMCALShishKebabModule::AliEMCALShishKebabModule(const AliEMCALShishKebabModule& mod) + : TNamed(mod.GetName(),mod.GetTitle()), + fOK(mod.fOK), + fA(mod.fA), + fB(mod.fB), + fTheta(mod.fTheta) { //copy ctor - fOK = mod.fOK; - fA = mod.fA; - fB = mod.fB; - fTheta = mod.fTheta; - } //_________________________________________________________________________