Skip to content
Snippets Groups Projects
Commit 24ca65a4 authored by Walter Lampl's avatar Walter Lampl
Browse files

Merge branch 'const.FlowAfterburner-20200911' into 'master'

FlowAfterburner: Make const violation explicit.

See merge request !36339
parents 49d89465 67323a57
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!36339FlowAfterburner: Make const violation explicit.
......@@ -204,6 +204,10 @@ StatusCode AddFlowByShifting::execute() {
" BPhi = " << hijing_pars->get_bphi());
// FIXME: changing data in the event store
HijingEventParams *hijing_pars_nc = const_cast<HijingEventParams*> (hijing_pars);
// Read Data from Transient Store
const McEventCollection* mcCollptr;
if ( evtStore()->retrieve(mcCollptr, m_inkey).isFailure() ) {
......@@ -225,10 +229,11 @@ StatusCode AddFlowByShifting::execute() {
//Store the angles into the hijing event parameters
for(int ihar=0;ihar<6;ihar++){
m_psi_n[ihar] =(CLHEP::RandFlat::shoot(p_engine)-0.5)*2*M_PI / (ihar+1); //Principal value must be within -PI/n to PI/n
(*hijing_pars).set_psi(ihar+1,m_psi_n[ihar]);
hijing_pars_nc->set_psi(ihar+1,m_psi_n[ihar]);
}
m_psi_n[1]=hijing_pars->get_bphi() ;//the psi2 plane is aligned with the impact parameter
m_psi_n[1]=std::atan2(std::sin(2*m_psi_n[1]),std::cos(2*m_psi_n[1]))/2.0;//ensure that Psi2 is within [-PI/2,PI/2]
hijing_pars_nc->set_psi(2,m_psi_n[1]);
(*hijing_pars).set_psi(2,m_psi_n[1]);
ATH_MSG_DEBUG(" Psi2 for event : "<<(*hijing_pars).get_psi(2));
......
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