You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit is removing lots of anwanted empty
lines in the output of TOF digitizer.
Note that with FairLogger it is no longer
necessary to put "\n" nor FairLogger::endl;
Now the text output of the DPL digitizer workflow is
substantially smaller.
continue; // the digit was already used to build a cluster
61
61
62
62
mNumberOfContributingDigits = 0;
63
63
dig->getPhiAndEtaIndex(iphi, ieta);
64
64
if (mStripData.digits.size() > 1)
65
-
LOG(DEBUG) << "idig = " << idig << "\n";
65
+
LOG(DEBUG) << "idig = " << idig;
66
66
67
67
// first we make a cluster out of the digit
68
68
int noc = clusters.size();
@@ -78,14 +78,14 @@ void Clusterer::processStrip(std::vector<Cluster>& clusters, MCLabelContainer co
78
78
continue; // the digit was already used to build a cluster
79
79
// check if the TOF time are close enough to be merged; if not, it means that nothing else will contribute to the cluster (since digits are ordered in time)
80
80
float timeDigNext = digNext->getTDC() * Geo::TDCBIN; // we assume it calibrated (for now); in ps
} elseif (deltaEta == -1) { // the digit is UP wrt the cluster
171
171
mask = Cluster::kUp;
172
172
} else { // impossible!!
173
-
LOG(DEBUG) << " Check what is going on, the digit you are trying to merge to the cluster must be in a different channels... " << FairLogger::endl;
173
+
LOG(DEBUG) << " Check what is going on, the digit you are trying to merge to the cluster must be in a different channels... ";
174
174
}
175
175
} else { // impossible!!! We checked above...
176
-
LOG(DEBUG) << " Check what is going on, the digit you are trying to merge to the cluster is too far from the cluster, you should have not got here... " << FairLogger::endl;
176
+
LOG(DEBUG) << " Check what is going on, the digit you are trying to merge to the cluster is too far from the cluster, you should have not got here... ";
0 commit comments