Skip to content
Snippets Groups Projects
Commit 1a208fcc authored by lintao@ihep.ac.cn's avatar lintao@ihep.ac.cn
Browse files

WIP: change the log level in G4PrimaryCnvTool

parent 71ee1b7b
No related branches found
No related tags found
No related merge requests found
...@@ -19,15 +19,15 @@ bool G4PrimaryCnvTool::mutate(G4Event* anEvent) { ...@@ -19,15 +19,15 @@ bool G4PrimaryCnvTool::mutate(G4Event* anEvent) {
int idxEdm4hep = -1; // valid: [0, N) int idxEdm4hep = -1; // valid: [0, N)
auto mcCol = m_mcParCol.get(); auto mcCol = m_mcParCol.get();
info() << "Start a new event: " << endmsg; info() << "Start a new event " << anEvent->GetEventID() << endmsg;
for ( auto p : *mcCol ) { for ( auto p : *mcCol ) {
info() << " gen track: " << p.getObjectID().index debug() << " gen track: " << p.getObjectID().index
<< " : (status: " << p.getGeneratorStatus() << ")" << " : (status: " << p.getGeneratorStatus() << ")"
<< " : (daughters: ["; << " : (daughters: [";
for ( auto it = p.daughters_begin(), end = p.daughters_end(); it != end; ++it ) { for ( auto it = p.daughters_begin(), end = p.daughters_end(); it != end; ++it ) {
info() << " " << it->getObjectID().index; debug() << " " << it->getObjectID().index;
} }
info() << " ]); " << endmsg; debug() << " ]); " << endmsg;
// idx in mc particle collection // idx in mc particle collection
++idxEdm4hep; ++idxEdm4hep;
...@@ -50,11 +50,11 @@ bool G4PrimaryCnvTool::mutate(G4Event* anEvent) { ...@@ -50,11 +50,11 @@ bool G4PrimaryCnvTool::mutate(G4Event* anEvent) {
vertex.z*CLHEP::mm, vertex.z*CLHEP::mm,
t); t);
info() << "--> Creating Geant4 Primary Vertex: (" debug() << "--> Creating Geant4 Primary Vertex: ("
<< vertex.x*CLHEP::mm << "," << vertex.x*CLHEP::mm << ","
<< vertex.y*CLHEP::mm << "," << vertex.y*CLHEP::mm << ","
<< vertex.z*CLHEP::mm << ")" << vertex.z*CLHEP::mm << ")"
<< endmsg; << endmsg;
// pdg/particle // pdg/particle
int pdgcode = p.getPDG(); int pdgcode = p.getPDG();
......
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