Skip to content
Snippets Groups Projects
Commit 4644ae03 authored by FU Chengdong's avatar FU Chengdong
Browse files

optimize print information

parent 854aa094
No related branches found
No related tags found
No related merge requests found
...@@ -233,7 +233,7 @@ StatusCode ClupatraAlg::initialize() { ...@@ -233,7 +233,7 @@ StatusCode ClupatraAlg::initialize() {
StatusCode ClupatraAlg::execute() { StatusCode ClupatraAlg::execute() {
debug() << "Clupatra Algorithm started" << endmsg; info() << "Clupatra Algorithm started" << endmsg;
// clock_t start = clock() ; // clock_t start = clock() ;
Timer timer ; Timer timer ;
...@@ -537,7 +537,7 @@ StatusCode ClupatraAlg::execute() { ...@@ -537,7 +537,7 @@ StatusCode ClupatraAlg::execute() {
debug() << " call fitter for seed cluster with " << (*icv)->size() << " hits " << endmsg; debug() << " call fitter for seed cluster with " << (*icv)->size() << " hits " << endmsg;
int counter = 0; int counter = 0;
for( Clusterer::cluster_type::iterator ci=(*icv)->begin(), end= (*icv)->end() ; ci!=end; ++ci ) { for( Clusterer::cluster_type::iterator ci=(*icv)->begin(), end= (*icv)->end() ; ci!=end; ++ci ) {
debug() << counter++ << " " << (*ci)->first->edm4hepHit << " \nlayer " << (*ci)->first->layer << endmsg; debug() << counter++ << " " << (*ci)->first->edm4hepHit.id() << " layer " << (*ci)->first->layer << endmsg;
} }
...@@ -562,9 +562,8 @@ StatusCode ClupatraAlg::execute() { ...@@ -562,9 +562,8 @@ StatusCode ClupatraAlg::execute() {
ConstTrack edm4hepTrk( converter( *icv ) ) ; ConstTrack edm4hepTrk( converter( *icv ) ) ;
// debug() << "Goes goes here" << endmsg; // debug() << "Goes goes here" << endmsg;
// FIXME Mingrui debug() << "============= poor seed cluster - no hits added - started from row " << outerRow << " track id="
debug() << "============= poor seed cluster - no hits added - started from row " << outerRow << "\n" << edm4hepTrk.id() << endmsg;
<< edm4hepTrk << endmsg;
for( Clusterer::cluster_type::iterator ci=(*icv)->begin(), end= (*icv)->end() ; ci!=end; ++ci ) { for( Clusterer::cluster_type::iterator ci=(*icv)->begin(), end= (*icv)->end() ; ci!=end; ++ci ) {
......
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