Skip to content
Snippets Groups Projects

WIP: fix MCLinking in TDR branch for LHCb::Tracks

Closed Renato Quagliani requested to merge TDR-rquaglia_fixhackMCLinking into TDR
Compare and Show latest version
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
@@ -81,12 +81,12 @@ StatusCode PrTrackConverter::execute() {
}
}
}
if( msgLevel::DEBUG){
if( msgLevel(MSG::DEBUG)){
debug()<<"Amoung of loaded TrackContainers = "<<trackContainers.size()<<endmsg;
}
for ( std::vector<std::string>::iterator itS = trackContainers.begin();
trackContainers.end() != itS; ++itS ) {
if( msgLevel::DEBUG){
if( msgLevel(MSG::DEBUG)){
debug() << "Containers found, append to list : " << *itS << endmsg ;
}
// Retrieve the Tracks
@@ -100,11 +100,11 @@ StatusCode PrTrackConverter::execute() {
LHCb::Tracks* tracks_copy = new LHCb::Tracks();
std::string track_cont_out = *itS;
if( msgLevel::DEBUG){
if( msgLevel(MSG::DEBUG)){
debug()<<"Processing track container = "<<(*itS)<<". It contains "<<tracks->size() <<" Tracks" << endmsg;
}
boost::replace_all( track_cont_out, m_rootOfContainers, m_rootOfOutContainers );
if( msgLevel::DEBUG){
if( msgLevel(MSG::DEBUG)){
debug()<<"Copied Keyed track container at location "<<track_cont_out<<endmsg;
}
Loading