-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Mu2e era straw params to separate config file
- Loading branch information
1 parent
f925c64
commit c405864
Showing
2 changed files
with
26 additions
and
20 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,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: |