Skip to content

Commit

Permalink
Add back all_dqm in the ecal validation config (#1471)
Browse files Browse the repository at this point in the history
* Add back all_dqm in the ecal validation config
* Adding back the TS part too
* Change setprecision in CKFProcessor
  • Loading branch information
tvami authored Sep 26, 2024
1 parent c37116d commit bde5418
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/validation_samples/ecal_pn/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,16 @@
ecal_vetos.EcalVetoProcessor(),
hcal_digi.HcalDigiProducer(),
hcal_digi.HcalRecProducer(),
*ts_digis,
TrigScintClusterProducer.pad1(),
TrigScintClusterProducer.pad2(),
TrigScintClusterProducer.pad3(),
trigScintTrack,
count, TriggerProcessor('trigger', 8000.),
dqm.PhotoNuclearDQM(verbose=True),
seed_tagger_dqm,
tagger_dqm,
seed_recoil_dqm,
recoil_dqm,
])
] + dqm.all_dqm)

2 changes: 1 addition & 1 deletion Tracking/src/Tracking/Reco/CKFProcessor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ void CKFProcessor::onProcessEnd() {
<< std::setprecision(3) << profiling_map_["setup"] / nevents_
<< " ms";
ldmx_log(info) << "hits Avg Time/Event = " << std::fixed
<< std::setprecision(3) << profiling_map_["hits"] / nevents_
<< std::setprecision(2) << profiling_map_["hits"] / nevents_
<< " ms";
ldmx_log(info) << "seeds Avg Time/Event = " << std::fixed
<< std::setprecision(3) << profiling_map_["seeds"] / nevents_
Expand Down

0 comments on commit bde5418

Please sign in to comment.