Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sbndcode/Decoders/PMT/pmtdecoder.fcl
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pmtdecoder:
hist_evt: 1 # the # of the event used to generate the histograms, 1st event by default

# trigger configurable
mon_threshold: 15 # ADC channel value threshold to add 1 to the trigger response MON pulse
mon_threshold: 50 # ADC channel value threshold to add 1 to the trigger response MON pulse

# for when the fragIDs are mapped to the old configuration or you need to hardcode fragids...
## to use this, must set `fragid_offset` to 0!!!
Expand Down
2 changes: 1 addition & 1 deletion sbndcode/OpDetSim/BeamRatesCalib_Defaults.fcl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ BeamRatesCalib:
# Save some example trigger pulses for each flash (TH1D similar to wvfana)
SaveAllMon: true
# The MON threshold used in the saved TH1D examples
FCLthreshold: 25
FCLthreshold: 50
# PMT index corresponding to the opening of the beam acceptance BeamWindowEnd
# Note that BeamWindowStart should not account for MTC/A wire+processing delays
# Those are handled by CAENOffset
Expand Down
2 changes: 1 addition & 1 deletion sbndcode/OpDetSim/BeamRatesCalib_module.cc
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ namespace opdet { //OpDet means optical detector
fBeamWindowEnd = p.get<int>("BeamWindowEnd", 1688+680);
fSaveAllMON = p.get<bool>("SaveAllMon", false);
fCheckTriggers = p.get<bool>("CheckHardwareTriggers", false); //Needs MTCA LLT to be digitized which is unusual (run 15670)
fFCLthreshold = p.get<int>("FCLthreshold", 15);
fFCLthreshold = p.get<int>("FCLthreshold", 50);
fOpDetsToPlot = p.get<std::vector<std::string> >("OpDetsToPlot");
fCheckSoftTrig = p.get<bool>("CheckSoftTrig", false);
fSoftTrigLabel = p.get<std::string>("SoftTrigLabel", "pmtmetricproducer:");
Expand Down
2 changes: 1 addition & 1 deletion sbndcode/OpDetSim/opdetdigitizer_sbnd.fcl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sbnd_opdetdigitizer:
ApplyTriggers: true #optional
ticksPerSlice: 5000 # corresponds to 10us
PercentTicksBeforeCross: 0.2
MonThreshold: 15
MonThreshold: 50
PairMultiplicityThreshold: 4

@table::sbnd_digipmt_alg
Expand Down