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 sbncode/LArRecoProducer/LArReco/TrajectoryMCSFitter.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ recob::MCSFitResult TrajectoryMCSFitter::fitMcs(const recob::TrackTrajectory& tr
if (segradlengths[p]<-100. || segradlengths[p-1]<-100.) {
dtheta.push_back(-999.);
}
if (!breakpointsgood[p] || !breakpointsgood[p-1]) {
else if (!breakpointsgood[p] || !breakpointsgood[p-1]) {
dtheta.push_back(-999.);
}
else {
Expand Down
14 changes: 11 additions & 3 deletions sbncode/LArRecoProducer/mcsproducer_icarus.fcl
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
BEGIN_PROLOG
mcs_sbn: {
mcs_icarus_data: {
module_type: MCSFitAllPID
MCS: {
eLossMode: 2
angResol: 10.0
angResol: 10.0 # tuned to data
fiducialVolumeInsets: [10.0, 10.0, 10.0, 10.0, 10.0, 10.0]
excludeVolumes: [190.0, 240.0, -9999.0, 9999.0, -9999.0, 9999.0]
excludeVolumes: [
200.0, 221.0, -9999.0, 9999.0, -9999.0, 9999.0, # exclude 10cm around cathode in Cryo W
-221.0, -200.0, -9999.0, 9999.0, -9999.0, 9999.0, # exclude 10cm around cathode in Cryo E
210.29, 358.49, 70, 9999.0, 0, 9999.0, # exclude dangling cable in TPC WW -- cut 65cm from top
-358.49, -210.29, 115, 9999.0, -9999.0, 9999.0 # exclude field cage failure in TPC EE -- cut 20cm from top
]
}
TrackLabel: pandoraTrack
}

mcs_icarus_mc: @local::mcs_icarus_data
mcs_icarus_mc.MCS.angResol: 3.0 # tuned to MC

END_PROLOG