#ifndef AliTPCCALIBTRACKSGAIN_H #define AliTPCCALIBTRACKSGAIN_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ #include #include #include #include #include #include #include #include using namespace std; class TTreeSRedirector; class TH3F; class TLinearFitter; class AliTPCClusterParam; class AliTPCParamSR; class AliTPCCalROC; class AliTPCCalPad; class AliTPCseed; class AliTPCclusterMI; class AliTrackPointArray; class TTreeStream; class AliTPCcalibTracksCuts; class AliTPCFitPad; class TObjString; class AliTPCcalibTracksGain : public TNamed { public: enum { kShortPads = 0, kMediumPads = 1, kLongPads = 2 }; enum { kSimpleFitter = 0, kSqrtFitter = 1, kLogFitter = 2 }; AliTPCcalibTracksGain(); AliTPCcalibTracksGain(const AliTPCcalibTracksGain& obj); AliTPCcalibTracksGain(const char* name, const char* title, AliTPCcalibTracksCuts* cuts, TNamed* debugStreamPrefix = 0, AliTPCcalibTracksGain* prevIter = 0); virtual ~AliTPCcalibTracksGain(); AliTPCcalibTracksGain& operator=(const AliTPCcalibTracksGain& rhs); static void AddInfo(TChain* chain, char* debugStreamPrefix = 0, char* prevIterFileName = 0); Bool_t AcceptTrack(AliTPCseed* track); void Terminate(); void Add(AliTPCcalibTracksGain* cal); void AddTrack(AliTPCseed* seed); void AddCluster(AliTPCclusterMI* cluster, Float_t momenta, Float_t mdedx, Int_t padType, Float_t xcenter, TVectorD dedxQ, TVectorD dedxM, Float_t fraction, Float_t fraction2, Float_t dedge, TVectorD parY, TVectorD parZ, TVectorD meanPos); void Process(AliTPCseed* seed); Long64_t Merge(TCollection *list); void Evaluate(Bool_t robust = kFALSE, Double_t frac = -1.); void GetParameters(UInt_t segment, UInt_t padType, UInt_t fitType, TVectorD &fitParam); void GetErrors(UInt_t segment, UInt_t padType, UInt_t fitType, TVectorD &fitError); Double_t GetRedChi2(UInt_t segment, UInt_t padType, UInt_t fitType); void GetCovarianceMatrix(UInt_t segment, UInt_t padType, UInt_t fitType, TMatrixD& covMatrix); AliTPCCalPad* CreateFitCalPad(UInt_t fitType, Bool_t undoTransformation = kFALSE, Bool_t normalizeToPadSize = kFALSE); AliTPCCalROC* CreateFitCalROC(UInt_t sector, UInt_t fitType, Bool_t undoTransformation = kFALSE, Bool_t normalizeToPadSize = kFALSE); AliTPCCalROC* CreateFitCalROC(UInt_t sector, UInt_t padType, TVectorD &fitParam, UInt_t fitType, Bool_t undoTransformation = kFALSE, Bool_t normalizeToPadSize = kFALSE); AliTPCCalROC* CreateCombinedCalROC(const AliTPCCalROC* roc1, const AliTPCCalROC* roc2); TLinearFitter* GetFitter(UInt_t segment, UInt_t padType, UInt_t fitType); static Double_t GetPadLength(Double_t lx); static Int_t GetPadType(Double_t lx); void DumpTrack(AliTPCseed* track); Bool_t GetDedx(AliTPCseed* track, Int_t padType, Int_t* rows); static Bool_t GetRowPad(Double_t lx, Double_t ly, Int_t& row, Int_t& pad); // just for debugging protected: UInt_t fTotalTracks; // just for debugging UInt_t fAcceptedTracks; // just for debugging AliTPCCalPad* fDebugCalPadRaw; // just for debugging AliTPCCalPad* fDebugCalPadCorr; // just for debugging TTreeSRedirector* fDebugStream; //! debug stream for debugging AliTPCFitPad* fSimpleFitter; // simple fitter for short pads AliTPCFitPad* fSqrtFitter; // sqrt fitter for medium pads AliTPCFitPad* fLogFitter; // log fitter for long pads AliTPCFitPad* fSingleSectorFitter; // just for debugging AliTPCcalibTracksGain* fPrevIter; // the calibration object in its previous iteration (will not be owned by the new object, don't forget to delete it!) UInt_t fNShortClusters[36]; // number of clusters registered on short pads UInt_t fNMediumClusters[36]; // number of clusters registered on medium pads UInt_t fNLongClusters[36]; // number of clusters registered on long pads TObjString* fDebugStreamPrefix; // pathname of the final location of the debug stream file (may also be an xrootd directory) AliTPCcalibTracksCuts* fCuts; // cuts that are used for sieving the tracks used for calibration static AliTPCParamSR* fgTPCparam; //! helper object for geometry related operations static const Double_t fgkM; // value used in the transformation of the charge values for the logarithmic fitter static const char* fgkDebugStreamFileName; // filename of the debug stream file static const Bool_t fgkUseTotalCharge; // whether to use the cluster's total or maximum charge ClassDef(AliTPCcalibTracksGain, 1); }; #endif