Newer
Older

Sylvester Joosten
committed
hitDistance = kBig;
if (num_good_pad != 0) {
pl_xypos = pl_xypos / num_good_pad;
pl_zpos = pl_zpos / num_good_pad;
hitPos = theTrack->GetY() + theTrack->GetPhi() * pl_zpos;
if (ip % 2 == 0)
hitPos = theTrack->GetX() + theTrack->GetTheta() * pl_zpos;
hitDistance = hitPos - pl_xypos;
fPlanes[ip]->SetTrackXPosition(theTrack->GetX() + theTrack->GetTheta() * pl_zpos);
fPlanes[ip]->SetTrackYPosition(theTrack->GetY() + theTrack->GetPhi() * pl_zpos);
}
// cout << " ip " << ip << " " << hitPos << " " << pl_xypos << " " << pl_zpos << " "
// << hitDistance << endl;
fPlanes[ip]->SetHitDistance(hitDistance);

Sylvester Joosten
committed
if (ih > 0 && fDumpTOF && Ntracks == 1 && fGoodEventTOFCalib &&
shower_track_enorm > fTOFCalib_shtrk_lo && shower_track_enorm < fTOFCalib_shtrk_hi) {
fDumpOut << "0 " << endl;

Sylvester Joosten
committed
} // over tracks
return 0;
}
//_____________________________________________________________________________

Sylvester Joosten
committed
Int_t THcHodoscope::GetScinIndex(Int_t nPlane, Int_t nPaddle) {
// GN: Return the index of a scintillator given the plane # and the paddle #
// This assumes that both planes and
// paddles start counting from 0!
// Result also counts from 0.

Sylvester Joosten
committed
return fNPlanes * nPaddle + nPlane;
Gabriel Niculescu
committed
}
//_____________________________________________________________________________

Sylvester Joosten
committed
Int_t THcHodoscope::GetScinIndex(Int_t nSide, Int_t nPlane, Int_t nPaddle) {
return nSide * fMaxHodoScin + fNPlanes * nPaddle + nPlane - 1;
Gabriel Niculescu
committed
}
//_____________________________________________________________________________

Sylvester Joosten
committed
Double_t THcHodoscope::GetPathLengthCentral() { return fPathLengthCentral; }
//_____________________________________________________________________________

Sylvester Joosten
committed
Int_t THcHodoscope::End(THaRunBase* run) {
MissReport(Form("%s.%s", GetApparatus()->GetName(), GetName()));
return 0;
}
ClassImp(THcHodoscope)

Sylvester Joosten
committed
////////////////////////////////////////////////////////////////////////////////