X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=PHOS%2FAliPHOSJetFinder.cxx;h=0297f6c643bb107d5aaaa55172ae4d81a5048b6c;hb=90dbf5fb2b3b943ac8b441443b53a86cc3db5c54;hp=ed4933aaceeb1c9ce8bd68fea89cec1e3aaf9210;hpb=351dd6348b2d6a89268f2717d98c08fc85e5dc79;p=u%2Fmrichter%2FAliRoot.git diff --git a/PHOS/AliPHOSJetFinder.cxx b/PHOS/AliPHOSJetFinder.cxx index ed4933aacee..0297f6c643b 100644 --- a/PHOS/AliPHOSJetFinder.cxx +++ b/PHOS/AliPHOSJetFinder.cxx @@ -21,6 +21,16 @@ //*-- Author : D.Peressounko after UA1 coll. etc ////////////////////////////////////////////////////////////////////////////// +/* $Id$ */ + +/* History of cvs commits: + * + * $Log$ + * Revision 1.8 2005/05/28 14:19:04 schutz + * Compilation warnings fixed by T.P. + * + */ + // --- ROOT system --- #include "TClonesArray.h" // #include "TIter.h" @@ -41,25 +51,44 @@ ClassImp(AliPHOSJetFinder) //____________________________________________________________________________ - AliPHOSJetFinder::AliPHOSJetFinder():TNamed("AliPHOSJetFinder","") +AliPHOSJetFinder::AliPHOSJetFinder(): + TNamed("AliPHOSJetFinder",""), + fNJets(0), + fStatusCode(-999), + fMode(0), + fConeRad(1.), + fMaxConeMove(0.15), + fMinConeMove(0.05), + fEtSeed(4.), + fEtMin(5.), + fPrecBg(0.00035), + fSimGain(0.), + fSimPedestal(0.), + fParticles(0), + fJets(0) { //Initialize jet parameters - fNJets = 0 ; - fMode = 0 ; //No iterations - fStatusCode = -999 ; //no selection - - fConeRad = 1.; //Radius of jet value????????? - fMaxConeMove = 0.15 ; //value??????? - fMinConeMove = 0.05 ; //value??????? - fEtSeed = 4. ; //Energy of seed particle value?????????? - fEtMin = 5.; //minimal energy of jet value?????????? - fPrecBg = 0.00035 ; //value???????? - fSimGain = 0.; - fSimPedestal = 0.; +} - fParticles = 0; - fJets = 0 ; - +//____________________________________________________________________________ +AliPHOSJetFinder::AliPHOSJetFinder(const AliPHOSJetFinder & jet) : + TNamed(jet), + fNJets(0), + fStatusCode(-999), + fMode(0), + fConeRad(1.), + fMaxConeMove(0.15), + fMinConeMove(0.05), + fEtSeed(4.), + fEtMin(5.), + fPrecBg(0.00035), + fSimGain(0.), + fSimPedestal(0.), + fParticles(0), + fJets(0) +{ + // copy ctor: no implementation yet + Fatal("cpy ctor", "not implemented"); } //____________________________________________________________________________ @@ -328,7 +357,7 @@ void AliPHOSJetFinder::CalculateEEtaPhi(const AliPHOSDigit * d,Double_t &e, Doub phi = pos.Phi() ; } //____________________________________________________________________________ -void AliPHOSJetFinder::Print(){ +void AliPHOSJetFinder::Print(const Option_t *) const { //Print parameters of the found jet printf("\n --------------- AliPHOSJetFinder --------------- \n") ; printf(" Jets found .........%d \n",fNJets) ;