-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #595 from michaelmackenzie/Mu2eII_IPA
Mu2eII_SM21: Add option to not build the IPA
- Loading branch information
Showing
4 changed files
with
48 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Geometry using the Mu2e era tracker straws | ||
#include "Offline/Mu2eG4/geom/geom_common.txt" | ||
#include "Offline/Mu2eG4/geom/tracker_straw_params_v01.txt" | ||
|
||
// This tells emacs to view this file in c++ mode. | ||
// Local Variables: | ||
// mode:c++ | ||
// End: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Geometry without the IPA | ||
#include "Offline/Mu2eG4/geom/geom_common.txt" | ||
bool protonabsorber.buildIPA = false; | ||
bool protonabsorber.ipa.buildSupports = false; | ||
|
||
// This tells emacs to view this file in c++ mode. | ||
// Local Variables: | ||
// mode:c++ | ||
// End: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Mu2e era straw parameters taken from tracker_v6.txt | ||
|
||
double tracker.strawOuterRadius = 2.5; | ||
double tracker.strawWallThickness = 0.015; | ||
double tracker.strawGap = 1.25; | ||
double tracker.wireRadius = 0.0125; | ||
string tracker.mat.strawgas = "StrawGas"; | ||
string tracker.mat.wire = "G4_W"; | ||
vector<string> tracker.strawMaterials = { "G4_MYLAR", "StrawGas", "G4_W" }; | ||
// define an inactive length at each end of every straw | ||
double tracker.passivationMargin = -4.; | ||
// Define the parameters of the metal coatings on the straws and wires. | ||
double tracker.straw.wallOuterMetal.thickness = 0.00005; | ||
string tracker.straw.wallOuterMetal.material = "G4_Al"; | ||
double tracker.straw.wallInnerMetal1.thickness = 0.00005; | ||
string tracker.straw.wallInnerMetal1.material = "G4_Al"; | ||
double tracker.straw.wallInnerMetal2.thickness = 0.00002; | ||
string tracker.straw.wallInnerMetal2.material = "G4_Au"; | ||
double tracker.straw.wirePlate.thickness = 0.00025; | ||
string tracker.straw.wirePlate.material = "G4_Au"; | ||
|
||
// This tells emacs to view this file in c++ mode. | ||
// Local Variables: | ||
// mode:c++ | ||
// End: |