We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2373242 commit 4ff9436Copy full SHA for 4ff9436
SimCore/python/generators.py
@@ -93,12 +93,15 @@ class lhe(simcfg.PrimaryGenerator) :
93
name of new primary generator
94
filePath : str
95
path to LHE file containing the primary vertices
96
+ vertex : list of float, optional
97
+ Vertex position to shoot from [mm]. Defaults to [0.0, 0.0, 0.0]
98
"""
99
100
def __init__(self,name,filePath):
101
super().__init__(name,'simcore::generators::LHEPrimaryGenerator')
102
103
self.filePath = filePath
104
+ self.vertex = [0.0, 0.0, 0.0]
105
106
class completeReSim(simcfg.PrimaryGenerator) :
107
"""New complete re-simprimary generator
0 commit comments