Skip to content
Merged
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
8 changes: 4 additions & 4 deletions Generators/src/TPCLoopers.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ namespace
//
// No cut is applied on z because loopers spiral the field lines and a vertex as far as |z| = 283 cm
// feeds hits into the gas. A cut here would discard loopers that produce TPC signals.
constexpr double kFcLxIn = 82.428409; // cm, inner field cage strips
constexpr double kRodROut = 254.25 + 2.2; // cm, outer field cage rods plus their radial size
constexpr double kLooperRadialReach = 10.; // cm, margin for the helix sweep
constexpr double kFcLxIn = 82.428409; // cm, inner field cage strips
constexpr double kRodROut = 254.25 + 2.2; // cm, outer field cage rods plus their radial size
constexpr double kLooperRadialReach = 10.; // cm, margin for the helix sweep
constexpr double kTPCActiveRMin = kFcLxIn - kLooperRadialReach;
constexpr double kTPCActiveRMax = kRodROut + kLooperRadialReach;
} // namespace
Expand All @@ -154,7 +154,7 @@ void GenTPCLoopers::setGeomProtection(bool protect)
mGeomProtection = protect;
if (mGeomProtection) {
LOG(debug) << "TPC loopers geometrical protection: ON (accepting vertices with "
<< kTPCActiveRMin << " <= Vt <= " << kTPCActiveRMax << " cm)";
<< kTPCActiveRMin << " <= Vt <= " << kTPCActiveRMax << " cm)";
} else {
LOG(warning) << "TPC loopers geometrical protection: OFF - loopers will be generated outside the TPC active volume as well.";
}
Expand Down
Loading