|
16 | 16 | def electro_nuclear( detector, generator ) : |
17 | 17 | """Example configuration for producing electro-nuclear reactions in the target. |
18 | 18 |
|
19 | | - In this particular example, 4 GeV electrons are fired upstream of the |
| 19 | + In this particular example, 8 GeV electrons are fired upstream of the |
20 | 20 | tagger tracker. TargetENFilter filters out events that don't see an |
21 | 21 | electro-nuclear reaction take places in the target. |
22 | 22 |
|
@@ -45,19 +45,19 @@ def electro_nuclear( detector, generator ) : |
45 | 45 | sim.setDetector( detector , True ) |
46 | 46 |
|
47 | 47 | # Set run parameters |
48 | | - sim.description = "Target electron-nuclear, xsec bias 1e8" |
| 48 | + sim.description = "Target electron-nuclear, xsec bias 1e5" |
49 | 49 | sim.beamSpotSmear = [20., 80., 0.] #mm |
50 | 50 |
|
51 | 51 | sim.generators.append(generator) |
52 | 52 |
|
53 | 53 | # Enable and configure the biasing |
54 | | - sim.biasing_operators = [ bias_operators.ElectroNuclear('target',1e8) ] |
| 54 | + sim.biasing_operators = [ bias_operators.ElectroNuclear('target',1e5) ] |
55 | 55 |
|
56 | 56 | # the following filters are in a library that needs to be included |
57 | 57 | includeBiasing.library() |
58 | 58 |
|
59 | 59 | # Configure the sequence in which user actions should be called. |
60 | | - recoil_thresh = 0.625 * generator.energy * 1000. |
| 60 | + recoil_thresh = 0.975 * generator.energy * 1000. |
61 | 61 | tagger_threshold = 0.95 * generator.energy * 1000. |
62 | 62 | sim.actions.extend([ |
63 | 63 | filters.TaggerVetoFilter(thresh = tagger_threshold), |
|
0 commit comments