Skip to content

Commit b2739b1

Browse files
author
Jacob McLaughlin
committed
Removing debug
1 parent a13976f commit b2739b1

2 files changed

Lines changed: 0 additions & 7 deletions

File tree

sbndcode/BlipRecoSBND/Alg/BlipRecoAlg.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,11 +363,9 @@ namespace blip {
363363
//if (evt.getByLabel(fSimDepProducer,sedHandle)){
364364
// art::fill_ptr_vector(sedlist, sedHandle);
365365
// }
366-
std::cout << " \n\n\n\n\n\n\n\n\n Look here \n\n\n\n\n " << std::endl;
367366
// -- SimChannels (usually dropped in reco)
368367
art::Handle<std::vector<sim::SimChannel> > simchanHandle;
369368
std::vector<art::Ptr<sim::SimChannel> > simchanlist;
370-
std::cout << fSimChanProducer << " Look at my sim channel handle here " <<std::endl;
371369
if (evt.getByLabel(fSimChanProducer,simchanHandle))
372370
{
373371
art::fill_ptr_vector(simchanlist, simchanHandle);

sbndcode/BlipRecoSBND/Utils/BlipUtils.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ namespace BlipUtils {
6666
pinfo.depElectrons += sed.numElectrons;
6767
}
6868
}
69-
std::cout << pinfo.depEnergy << " " << pinfo.trackId << std::endl;
7069
return;
7170

7271
}
@@ -95,9 +94,7 @@ namespace BlipUtils {
9594

9695
// Create the new blip
9796
blip::TrueBlip tb;
98-
std::cout << " making a new blip " << std::endl;
9997
GrowTrueBlip(pinfo[i],tb);
100-
std::cout << tb.Energy << std::endl;
10198
if( !tb.Energy ) continue;
10299

103100
// We want to loop through any contiguous electrons (produced
@@ -114,7 +111,6 @@ namespace BlipUtils {
114111

115112
// Final check -- ensure there was non-negligible number
116113
// of deposted ionization electrons
117-
std::cout << tb.DepElectrons << " total electrons " << std::endl;
118114
if( tb.DepElectrons < 20 ) continue;
119115

120116
// Calculate TPC-specific quantities
@@ -129,7 +125,6 @@ namespace BlipUtils {
129125
tb.DriftTime = tick_calc*clockData.TPCClock().TickPeriod() + clockData.TriggerOffsetTPC();
130126

131127
tb.ID = trueblips.size();
132-
std::cout << "going to push this into holder " << std::endl;
133128
trueblips.push_back(tb);
134129

135130
}

0 commit comments

Comments
 (0)