Skip to content
Snippets Groups Projects
Commit 42ea93f0 authored by Stephen A. Wood's avatar Stephen A. Wood
Browse files

Fixup GetParent stuff in THcDriftChamber

parent ee73e784
No related branches found
No related tags found
No related merge requests found
...@@ -156,14 +156,13 @@ Int_t THcDriftChamber::ReadDatabase( const TDatime& date ) ...@@ -156,14 +156,13 @@ Int_t THcDriftChamber::ReadDatabase( const TDatime& date )
fStubMaxXPDiff = 999.; // fStubMaxXPDiff = 999.; //
gHcParms->LoadParmValues((DBRequest*)&list,prefix); gHcParms->LoadParmValues((DBRequest*)&list,prefix);
// Get parameters parent knows about // Get parameters parent knows about
THcDC* fParent; fParent = GetParent();
fParent = (THcDC*) GetParent(); fMinHits = static_cast<THcDC*>(fParent)->GetMinHits(fChamberNum);
fMinHits = fParent->GetMinHits(fChamberNum); fMaxHits = static_cast<THcDC*>(fParent)->GetMaxHits(fChamberNum);
fMaxHits = fParent->GetMaxHits(fChamberNum); fMinCombos = static_cast<THcDC*>(fParent)->GetMinCombos(fChamberNum);
fMinCombos = fParent->GetMinCombos(fChamberNum); fFixPropagationCorrection = static_cast<THcDC*>(fParent)->GetFixPropagationCorrectionFlag();
fFixPropagationCorrection = fParent->GetFixPropagationCorrectionFlag();
fSpacePointCriterion = static_cast<THcDC*>(fParent)->GetSpacePointCriterion(fChamberNum);
fSpacePointCriterion = fParent->GetSpacePointCriterion(fChamberNum);
fMaxDist = TMath::Sqrt(fSpacePointCriterion/2.0); // For easy space points fMaxDist = TMath::Sqrt(fSpacePointCriterion/2.0); // For easy space points
if (fhdebugflagpr) cout << " cham = " << fChamberNum << " Set yplane num " << YPlaneNum << " "<< YPlanePNum << endl; if (fhdebugflagpr) cout << " cham = " << fChamberNum << " Set yplane num " << YPlaneNum << " "<< YPlanePNum << endl;
...@@ -983,7 +982,7 @@ void THcDriftChamber::CorrectHitTimes() ...@@ -983,7 +982,7 @@ void THcDriftChamber::CorrectHitTimes()
Int_t readvert = plane->GetReadoutTB(); Int_t readvert = plane->GetReadoutTB();
//+x is up and +y is beam right! //+x is up and +y is beam right!
double alpha = fParent->GetAlphaAngle(pln); double alpha = static_cast<THcDC*>(fParent)->GetAlphaAngle(pln);
double xc = posn*TMath::Sin(alpha); double xc = posn*TMath::Sin(alpha);
double yc = posn*TMath::Cos(alpha); double yc = posn*TMath::Cos(alpha);
......
...@@ -137,6 +137,8 @@ protected: ...@@ -137,6 +137,8 @@ protected:
Double_t* stubcoef[4]; Double_t* stubcoef[4];
std::map<int,TMatrixD*> fAA3Inv; std::map<int,TMatrixD*> fAA3Inv;
THaDetectorBase* fParent;
ClassDef(THcDriftChamber,0) // A single drift chamber ClassDef(THcDriftChamber,0) // A single drift chamber
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment