Skip to content

Commit 9e01756

Browse files
committed
fix CloseBy config
1 parent b20c7aa commit 9e01756

File tree

1 file changed

+19
-14
lines changed

1 file changed

+19
-14
lines changed

Configuration/Generator/python/CloseByParticle_Photon_ERZRanges_cfi.py

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,30 @@
11
import FWCore.ParameterSet.Config as cms
22

33
generator = cms.EDProducer("CloseByParticleGunProducer",
4-
PGunParameters = cms.PSet(PartID = cms.vint32(22),
4+
PGunParameters = cms.PSet(
55
ControlledByEta = cms.bool(False),
6-
EnMin = cms.double(25.),
7-
EnMax = cms.double(200.),
8-
MaxEnSpread = cms.bool(False),
9-
RMin = cms.double(60),
10-
RMax = cms.double(120),
11-
ZMin = cms.double(320),
12-
ZMax = cms.double(321),
136
Delta = cms.double(10),
14-
Pointing = cms.bool(True),
15-
Overlapping = cms.bool(False),
16-
RandomShoot = cms.bool(False),
17-
NParticles = cms.int32(2),
7+
VarMax = cms.double(200),
8+
VarMin = cms.double(25),
9+
MaxVarSpread = cms.bool(False),
10+
FlatPtGeneration = cms.bool(False),
1811
MaxEta = cms.double(2.7),
19-
MinEta = cms.double(1.7),
2012
MaxPhi = cms.double(3.14159265359),
13+
MinEta = cms.double(1.7),
2114
MinPhi = cms.double(-3.14159265359),
22-
15+
NParticles = cms.int32(2),
16+
Overlapping = cms.bool(False),
17+
PartID = cms.vint32(22),
18+
Pointing = cms.bool(True),
19+
RMax = cms.double(120),
20+
RMin = cms.double(60),
21+
RandomShoot = cms.bool(False),
22+
ZMax = cms.double(321),
23+
ZMin = cms.double(320),
24+
UseDeltaT = cms.bool(False),
25+
TMin = cms.double(0),
26+
TMax = cms.double(0.05),
27+
OffsetFirst = cms.double(0)
2328
),
2429
Verbosity = cms.untracked.int32(0),
2530

0 commit comments

Comments
 (0)