From ff43c22fd62d9f9b1f1e1f5a5b5802bed20c74be Mon Sep 17 00:00:00 2001 From: Luiz Mundim Date: Fri, 14 Sep 2018 16:21:11 +0200 Subject: [PATCH] removing commented code that was not caught by PR testing --- .../plugins/CTPPSFastTrackingProducer.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FastSimulation/CTPPSFastTrackingProducer/plugins/CTPPSFastTrackingProducer.cc b/FastSimulation/CTPPSFastTrackingProducer/plugins/CTPPSFastTrackingProducer.cc index 86926b2cad72c..51503be6f8488 100644 --- a/FastSimulation/CTPPSFastTrackingProducer/plugins/CTPPSFastTrackingProducer.cc +++ b/FastSimulation/CTPPSFastTrackingProducer/plugins/CTPPSFastTrackingProducer.cc @@ -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(&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); @@ -385,8 +385,8 @@ bool CTPPSFastTrackingProducer::SetBeamLine() m_beamlineCTPPS1->fill( b2.fullPath(), 1, "IP5"); m_beamlineCTPPS2 = std::unique_ptr(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(new H_RecRPObject(fz_tracker1,fz_tracker2,*m_beamlineCTPPS1)); pps_stationB = std::unique_ptr(new H_RecRPObject(fz_tracker1,fz_tracker2,*m_beamlineCTPPS2)); return true;