Skip to content

Commit

Permalink
clang
Browse files Browse the repository at this point in the history
  • Loading branch information
tvami committed Aug 28, 2024
1 parent 63bb707 commit 4be1610
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions Ecal/src/Ecal/EcalVetoProcessor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,8 @@ void EcalVetoProcessor::produce(framework::Event &event) {
ldmx_log(debug) << "Finding linreg tracks from " << trackingHitList.size()
<< " hits";

std::cout << "Finding linreg tracks from " << trackingHitList.size() << " hits" << std::endl;
std::cout << "Finding linreg tracks from " << trackingHitList.size()
<< " hits" << std::endl;

for (int iHit = 0; iHit < trackingHitList.size(); iHit++) {
int track[34];
Expand Down Expand Up @@ -1021,8 +1022,10 @@ void EcalVetoProcessor::produce(framework::Event &event) {
(trackingHitList[iHit].pos - trackingHitList[jHit].pos).Mag();
if (dstToHit <= 2 * cellWidth) {
std::cout << " ------------------" << std::endl;
std::cout << iHit << "-th iHit has Z = " << trackingHitList[iHit].pos(2) << std::endl;
std::cout << jHit << "-th jHit has Z = " << trackingHitList[jHit].pos(2) << std::endl;
std::cout << iHit << "-th iHit has Z = " << trackingHitList[iHit].pos(2)
<< std::endl;
std::cout << jHit << "-th jHit has Z = " << trackingHitList[jHit].pos(2)
<< std::endl;
hitsInRegion[nHitsInRegion] = jHit;
nHitsInRegion++;
}
Expand Down Expand Up @@ -1124,9 +1127,9 @@ void EcalVetoProcessor::produce(framework::Event &event) {
<< " straight tracks and " << nLinregTracks_
<< " lin-reg tracks";

std::cout << " MIP tracking completed; found " << nStraightTracks_
<< " straight tracks and " << nLinregTracks_
<< " lin-reg tracks" << std::endl;
std::cout << " MIP tracking completed; found " << nStraightTracks_
<< " straight tracks and " << nLinregTracks_ << " lin-reg tracks"
<< std::endl;

result.setVariables(
nReadoutHits_, deepestLayerHit_, summedDet_, summedTightIso_, maxCellDep_,
Expand Down

0 comments on commit 4be1610

Please sign in to comment.