Skip to content

Commit 1179fce

Browse files
Fix typo
1 parent 51ae1ac commit 1179fce

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

sbndcode/TPCPMTBarycenterMatching/TPCPMTBarycenterMatching_module.cc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -299,15 +299,15 @@ TPCPMTBarycenterMatchProducer::TPCPMTBarycenterMatchProducer(fhicl::ParameterSet
299299
fCalAreaConst(p.get<std::vector<double>>("CalAreaConst")),
300300
fOpDetVUVEff (p.get<double>("OpDetVUVEff")),
301301
fOpDetVISEff (p.get<double>("OpDetVISEff")),
302-
fVerbose(p.get<bool>("Verbose", false)),
303-
fFillMatchTree(p.get<bool>("FillMatchTree", false)),
304-
fDo3DMatching(p.get<bool>("Do3DMatching",true)),
302+
fVerbose(p.get<bool>("Verbose")),
303+
fFillMatchTree(p.get<bool>("FillMatchTree")),
304+
fDo3DMatching(p.get<bool>("Do3DMatching")),
305305
fLightChargeRatioBounds(p.get<std::vector<double>>("LightChargeRatioBounds")),
306306
fXError(p.get<double>("XError")), // cm
307307
fYError(p.get<double>("YError")), // cm
308308
fZError(p.get<double>("ZError")), // cm
309309
fAngleError(p.get<double>("AngleError")), // deg
310-
fFlashVetoWindow(p.get<std::vector<double>>("FlashVetoWindow")), // us
310+
fFlashVetoWindow(p.get<std::vector<double>>("FlashVetoWindow")) // us
311311
{
312312
// Call appropriate produces<>() functions here.
313313

@@ -328,7 +328,7 @@ TPCPMTBarycenterMatchProducer::TPCPMTBarycenterMatchProducer(fhicl::ParameterSet
328328
//Event Info
329329
fMatchTree->Branch("run", &fRun, "run/I" );
330330
fMatchTree->Branch("event", &fEvent, "event/I" );
331-
fMatchTree->Branch("cryo", &fTPC, "cryo/I" );
331+
fMatchTree->Branch("cryo", &fTPC, "cryo/I" );
332332
fMatchTree->Branch("sliceNum", &fSliceNum, "sliceNum/I" );
333333

334334
//Charge Info

sbndcode/TPCPMTBarycenterMatching/job/sbnd_tpcpmt3dbarycentermatching_config.fcl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ TPCPMTBarycenterMatchProducer:
1515
DistanceCandidateFlashes: 100
1616
VUVHits: @local::sbnd_vuv_RS100cm_hits_parameterization
1717
VIVHits: @local::sbnd_vis_RS100cm_hits_parameterization
18-
OpDetVUVEff: @local:sbnd_digipmt_alg.PMTCoatedVUVEff_tpc1
19-
OpDetVISEff: @local:sbnd_digipmt_alg.PMTUncoatedEff_tpc1
20-
CalAreaConst: @local:sbnd_calorimetryalgdata.CalAreaConstants
18+
OpDetVUVEff: @local::sbnd_digipmt_alg.PMTCoatedVUVEff_tpc1
19+
OpDetVISEff: @local::sbnd_digipmt_alg.PMTUncoatedEff_tpc1
20+
CalAreaConst: @local::sbnd_calorimetryalgdata.CalAreaConstants
2121
LightChargeRatioBounds: [0.25, 3]
22-
XError: 12
23-
YError: 23
24-
ZError: 23
25-
AngleError: 27
26-
FlashVetoWindow: [-1500000,1500000]
22+
XError: 12 // cm
23+
YError: 23 // cm
24+
ZError: 23 // cm
25+
AngleError: 27 // deg
26+
FlashVetoWindow: [-1500000,1500000] // ns
2727
module_type: "TPCPMTBarycenterMatchProducer"
2828
}
2929

30-
TPCPMTBarycenterMatchProducerSCE: @local:TPCPMTBarycenterMatchProducer
30+
TPCPMTBarycenterMatchProducerSCE: @local::TPCPMTBarycenterMatchProducer
3131
TPCPMTBarycenterMatchProducerSCE.PandoraLabel: "pandoraSCE"
3232

3333

0 commit comments

Comments
 (0)