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

WIP: optimize the code, get hit collection at begin.

parent d7979753
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,17 @@ ExampleAnaElemTool::EndOfEventAction(const G4Event* anEvent) {
// just skip this collection.
continue;
}
plcio::SimTrackerHitCollection* tracker_col_ptr = nullptr;
if (collect->GetName() == "VXDCollection") {
tracker_col_ptr = vxdcols;
} else {
tracker_col_ptr = trackercols;
}
// There are different types (new and old)
dd4hep::sim::Geant4HitCollection* coll = dynamic_cast<dd4hep::sim::Geant4HitCollection*>(collect);
......@@ -112,16 +123,8 @@ ExampleAnaElemTool::EndOfEventAction(const G4Event* anEvent) {
if (trk_hit) {
info() << " cast to dd4hep::sim::Geant4TrackerHit. " << endmsg;
plcio::SimTrackerHitCollection* colptr = nullptr;
if (collect->GetName() == "VXDCollection") {
colptr = vxdcols;
} else {
colptr = trackercols;
}
// auto edm_trk_hit = trackercols->create();
auto edm_trk_hit = (*colptr)->create();
auto edm_trk_hit = tracker_col_ptr->create();
// Refer to: ./DDG4/lcio/LCIOConversions.cpp
edm_trk_hit->setCellID0((trk_hit->cellID >> 0 ) & 0xFFFFFFFF);
......
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