From 6cac085df59e53b80750ec5e3ae0e2cd11b60a1f Mon Sep 17 00:00:00 2001 From: ivana Date: Tue, 1 Apr 2008 13:06:11 +0000 Subject: [PATCH] Code cleanup: - Removing not implemented methods (AliMUONRefitter.h) - Adding printing + some cosmetics in AliMUONRecoParam.cxx) - Adding comments (AliMUONRecoParam.h) (Philippe P.) --- MUON/AliMUONRecoParam.cxx | 11 +++++++++++ MUON/AliMUONRecoParam.h | 4 ++-- MUON/AliMUONRefitter.h | 3 +-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/MUON/AliMUONRecoParam.cxx b/MUON/AliMUONRecoParam.cxx index 852b4e9cec3..616022b9a6b 100644 --- a/MUON/AliMUONRecoParam.cxx +++ b/MUON/AliMUONRecoParam.cxx @@ -126,6 +126,7 @@ void AliMUONRecoParam::SetLowFluxParam() fSigmaCutForImprovement = 5.; fSigmaCutForTrigger = 8.; fMaxNormChi2MatchTrigger = 16.; + fCombinedClusterTrackReco = kFALSE; fTrackAllTracks = kTRUE; fRecoverTracks = kTRUE; fMakeTrackCandidatesFast = kFALSE; @@ -135,6 +136,7 @@ void AliMUONRecoParam::SetLowFluxParam() fUseSmoother = kTRUE; for (Int_t iCh = 0; iCh < 10; iCh++) fUseChamber[iCh] = kTRUE; for (Int_t iSt = 0; iSt < 5; iSt++) fRequestStation[iSt] = kTRUE; + fBypassSt45 = kFALSE; } @@ -154,6 +156,7 @@ void AliMUONRecoParam::SetHighFluxParam() fSigmaCutForImprovement = 5.; fSigmaCutForTrigger = 8.; fMaxNormChi2MatchTrigger = 16.; + fCombinedClusterTrackReco = kFALSE; fTrackAllTracks = kTRUE; fRecoverTracks = kTRUE; fMakeTrackCandidatesFast = kFALSE; @@ -163,6 +166,7 @@ void AliMUONRecoParam::SetHighFluxParam() fUseSmoother = kTRUE; for (Int_t iCh = 0; iCh < 10; iCh++) fUseChamber[iCh] = kTRUE; for (Int_t iSt = 0; iSt < 5; iSt++) fRequestStation[iSt] = kTRUE; + fBypassSt45 = kFALSE; } @@ -274,6 +278,13 @@ void AliMUONRecoParam::Print(Option_t *option) const } while (++st < 5); if (discardedSt) cout<= 0 && iSt < 5) ? fRequestStation[iSt] : kFALSE;} + /// set the bypassSt45 value + void BypassSt45(Bool_t value) { fBypassSt45 = value; } /// return kTRUE if we should replace clusters in St 4 and 5 by generated clusters from trigger tracks Bool_t BypassSt45() const { return fBypassSt45; } - /// set the bypassSt45 value - void BypassSt45(Bool_t value) { fBypassSt45 = value; } virtual void Print(Option_t *option = "") const; diff --git a/MUON/AliMUONRefitter.h b/MUON/AliMUONRefitter.h index 7e9823464fe..df700ff9310 100644 --- a/MUON/AliMUONRefitter.h +++ b/MUON/AliMUONRefitter.h @@ -30,6 +30,7 @@ public: AliMUONRefitter(); virtual ~AliMUONRefitter(); + /// connect to the ESD interface containing MUON data to refit void Connect(AliMUONESDInterface* esdInterface) {fESDInterface = esdInterface;} // re-reconstruct all tracks (clusters) in the ESD event @@ -55,8 +56,6 @@ private: void CreateGeometryTransformer(); void CreateClusterServer(AliMUONGeometryTransformer& transformer); - AliMUONVClusterFinder* CreateClusterFinder(); - void CreateTrackReconstructor(AliMUONVClusterServer& clusterServer); void AddClusterToTracks(const AliMUONVClusterStore &localClusterStore, AliMUONVTrackStore &trackStore); -- 2.43.0