Skip to content

Commit da97ccd

Browse files
Merge pull request #889 from SBNSoftware/feature/TriggerWorkNikki-PR
Fix: correction to MonThreshold fcl parameter for data and MC
2 parents 7d7b6c0 + 9e78ccd commit da97ccd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

sbndcode/Decoders/PMT/pmtdecoder.fcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pmtdecoder:
4848
hist_evt: 1 # the # of the event used to generate the histograms, 1st event by default
4949

5050
# trigger configurable
51-
mon_threshold: 15 # ADC channel value threshold to add 1 to the trigger response MON pulse
51+
mon_threshold: 50 # ADC channel value threshold to add 1 to the trigger response MON pulse
5252

5353
# for when the fragIDs are mapped to the old configuration or you need to hardcode fragids...
5454
## to use this, must set `fragid_offset` to 0!!!

sbndcode/OpDetSim/BeamRatesCalib_Defaults.fcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ BeamRatesCalib:
1919
# Save some example trigger pulses for each flash (TH1D similar to wvfana)
2020
SaveAllMon: true
2121
# The MON threshold used in the saved TH1D examples
22-
FCLthreshold: 25
22+
FCLthreshold: 50
2323
# PMT index corresponding to the opening of the beam acceptance BeamWindowEnd
2424
# Note that BeamWindowStart should not account for MTC/A wire+processing delays
2525
# Those are handled by CAENOffset

sbndcode/OpDetSim/BeamRatesCalib_module.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ namespace opdet { //OpDet means optical detector
200200
fBeamWindowEnd = p.get<int>("BeamWindowEnd", 1688+680);
201201
fSaveAllMON = p.get<bool>("SaveAllMon", false);
202202
fCheckTriggers = p.get<bool>("CheckHardwareTriggers", false); //Needs MTCA LLT to be digitized which is unusual (run 15670)
203-
fFCLthreshold = p.get<int>("FCLthreshold", 15);
203+
fFCLthreshold = p.get<int>("FCLthreshold", 50);
204204
fOpDetsToPlot = p.get<std::vector<std::string> >("OpDetsToPlot");
205205
fCheckSoftTrig = p.get<bool>("CheckSoftTrig", false);
206206
fSoftTrigLabel = p.get<std::string>("SoftTrigLabel", "pmtmetricproducer:");

sbndcode/OpDetSim/opdetdigitizer_sbnd.fcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ sbnd_opdetdigitizer:
1414
ApplyTriggers: true #optional
1515
ticksPerSlice: 5000 # corresponds to 10us
1616
PercentTicksBeforeCross: 0.2
17-
MonThreshold: 15
17+
MonThreshold: 50
1818
PairMultiplicityThreshold: 4
1919

2020
@table::sbnd_digipmt_alg

0 commit comments

Comments
 (0)