Skip to content

Commit

Permalink
removing commented code that was not caught by PR testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mundim committed Sep 14, 2018
1 parent 99bcc27 commit ff43c22
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ void CTPPSFastTrackingProducer::FastReco(int Direction,H_RecRPObject* station)
if (fCrossAngleCorr) PPSTools::LorentzBoost(p,"MC");
//Getting the Xi and t (squared four momentum transferred) of the reconstructed track
PPSTools::Get_t_and_xi(const_cast<CLHEP::HepLorentzVector*>(&p),t,xi);
double pxx = p.px(); double pyy = p.py(); double pzz = p.pz(); //double ee = p.E();
double pxx = p.px(); double pyy = p.py(); double pzz = p.pz();
math::XYZVector momentum (pxx,pyy,pzz);
math::XYZPoint vertex (x0,y0,0);

Expand Down Expand Up @@ -385,8 +385,8 @@ bool CTPPSFastTrackingProducer::SetBeamLine()
m_beamlineCTPPS1->fill( b2.fullPath(), 1, "IP5");
m_beamlineCTPPS2 = std::unique_ptr<H_BeamLine>(new H_BeamLine( 1, lengthctpps + 0.1 )); //
m_beamlineCTPPS2->fill( b1.fullPath(), 1, "IP5");
//m_beamlineCTPPS1->offsetElements( 120, 0.097 );
//m_beamlineCTPPS2->offsetElements( 120,-0.097 );
m_beamlineCTPPS1->offsetElements( 120, 0.097 );
m_beamlineCTPPS2->offsetElements( 120,-0.097 );
pps_stationF = std::unique_ptr<H_RecRPObject>(new H_RecRPObject(fz_tracker1,fz_tracker2,*m_beamlineCTPPS1));
pps_stationB = std::unique_ptr<H_RecRPObject>(new H_RecRPObject(fz_tracker1,fz_tracker2,*m_beamlineCTPPS2));
return true;
Expand Down

0 comments on commit ff43c22

Please sign in to comment.