Skip to content

Commit 45fa7f6

Browse files
authored
Update target EN config paramaters (#1840)
* Update target en biasing and threshold * Comment updates
1 parent b49e6a4 commit 45fa7f6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Biasing/python/target.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
def electro_nuclear( detector, generator ) :
1717
"""Example configuration for producing electro-nuclear reactions in the target.
1818
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
2020
tagger tracker. TargetENFilter filters out events that don't see an
2121
electro-nuclear reaction take places in the target.
2222
@@ -45,19 +45,19 @@ def electro_nuclear( detector, generator ) :
4545
sim.setDetector( detector , True )
4646

4747
# Set run parameters
48-
sim.description = "Target electron-nuclear, xsec bias 1e8"
48+
sim.description = "Target electron-nuclear, xsec bias 1e5"
4949
sim.beamSpotSmear = [20., 80., 0.] #mm
5050

5151
sim.generators.append(generator)
5252

5353
# Enable and configure the biasing
54-
sim.biasing_operators = [ bias_operators.ElectroNuclear('target',1e8) ]
54+
sim.biasing_operators = [ bias_operators.ElectroNuclear('target',1e5) ]
5555

5656
# the following filters are in a library that needs to be included
5757
includeBiasing.library()
5858

5959
# 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.
6161
tagger_threshold = 0.95 * generator.energy * 1000.
6262
sim.actions.extend([
6363
filters.TaggerVetoFilter(thresh = tagger_threshold),

0 commit comments

Comments
 (0)