From: cblume Date: Wed, 9 May 2007 15:58:24 +0000 (+0000) Subject: coding conventions X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;ds=sidebyside;h=b2bc6e56585686e9812f0263f2f69be98cd7110e;p=u%2Fmrichter%2FAliRoot.git coding conventions --- diff --git a/TRD/Cal/AliTRDCalPIDLQ.cxx b/TRD/Cal/AliTRDCalPIDLQ.cxx index 44fd60449bb..c8ab5ca56dd 100644 --- a/TRD/Cal/AliTRDCalPIDLQ.cxx +++ b/TRD/Cal/AliTRDCalPIDLQ.cxx @@ -56,15 +56,13 @@ ClassImp(AliTRDCalPIDLQ) Char_t* AliTRDCalPIDLQ::fpartName[AliPID::kSPECIES] = {"electron", "muon", "pion", "kaon", "proton"}; Char_t* AliTRDCalPIDLQ::fpartSymb[AliPID::kSPECIES] = {"EL", "MU", "PI", "KA", "PR"}; -//const Int_t AliTRDCalPIDLQ::fNMom = 11; -//const Int_t AliTRDCalPIDLQ::fNLength = 4; //_________________________________________________________________________ AliTRDCalPIDLQ::AliTRDCalPIDLQ() :TNamed("pid", "PID for TRD") - //,fNMom(0) + ,fNMom(0) ,fTrackMomentum(0x0) - //,fNLength(0) + ,fNLength(0) ,fTrackSegLength(0x0) ,fNTimeBins(0) ,fMeanChargeRatio(0) @@ -84,9 +82,9 @@ AliTRDCalPIDLQ::AliTRDCalPIDLQ() //_________________________________________________________________________ AliTRDCalPIDLQ::AliTRDCalPIDLQ(const Text_t *name, const Text_t *title) :TNamed(name,title) - //,fNMom(0) + ,fNMom(0) ,fTrackMomentum(0x0) - //,fNLength(0) + ,fNLength(0) ,fTrackSegLength(0x0) ,fNTimeBins(0) ,fMeanChargeRatio(0) @@ -107,9 +105,9 @@ AliTRDCalPIDLQ::AliTRDCalPIDLQ(const Text_t *name, const Text_t *title) //_____________________________________________________________________________ AliTRDCalPIDLQ::AliTRDCalPIDLQ(const AliTRDCalPIDLQ &c) :TNamed(c) - //,fNMom(c.fNMom) + ,fNMom(c.fNMom) ,fTrackMomentum(0x0) - //,fNLength(c.fNLength) + ,fNLength(c.fNLength) ,fTrackSegLength(0x0) ,fNTimeBins(c.fNTimeBins) ,fMeanChargeRatio(c.fMeanChargeRatio)