forked from cms-sw/cmssw
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from cms-sw/CMSSW_6_2_X_SLHC
Cmssw 6 2 x slhc
- Loading branch information
Showing
294 changed files
with
19,724 additions
and
2,073 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
Configuration/Generator/python/FourMuExtendedPt_1_200_cfi.py
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,20 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# Modified from Configuration/Generator/python/SingleMuPt10_cfi.py | ||
generator = cms.EDProducer("FlatRandomPtGunProducer", | ||
PGunParameters = cms.PSet( | ||
MaxPt = cms.double(200.0), | ||
MinPt = cms.double(0.9), | ||
PartID = cms.vint32(-13,-13), | ||
MaxEta = cms.double(4.0), | ||
MaxPhi = cms.double(3.14159265359), | ||
MinEta = cms.double(-4.0), | ||
MinPhi = cms.double(-3.14159265359) ## in radians | ||
|
||
), | ||
Verbosity = cms.untracked.int32(0), ## set to 1 (or greater) for printouts | ||
|
||
psethack = cms.string('Four mu pt 1 to 200'), | ||
AddAntiParticle = cms.bool(True), | ||
firstRun = cms.untracked.uint32(1) | ||
) |
19 changes: 19 additions & 0 deletions
19
Configuration/Generator/python/SingleElectronPt1000Extended_cfi.py
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,19 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
generator = cms.EDProducer("FlatRandomPtGunProducer", | ||
PGunParameters = cms.PSet( | ||
MaxPt = cms.double(1000.01), | ||
MinPt = cms.double(999.99), | ||
PartID = cms.vint32(11), | ||
MaxEta = cms.double(4.0), | ||
MaxPhi = cms.double(3.14159265359), | ||
MinEta = cms.double(-4.0), | ||
MinPhi = cms.double(-3.14159265359) ## in radians | ||
|
||
), | ||
Verbosity = cms.untracked.int32(0), ## set to 1 (or greater) for printouts | ||
|
||
psethack = cms.string('single electron pt 1000'), | ||
AddAntiParticle = cms.bool(True), | ||
firstRun = cms.untracked.uint32(1) | ||
) |
19 changes: 19 additions & 0 deletions
19
Configuration/Generator/python/SingleElectronPt10Extended_cfi.py
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,19 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
generator = cms.EDProducer("FlatRandomPtGunProducer", | ||
PGunParameters = cms.PSet( | ||
MaxPt = cms.double(10.01), | ||
MinPt = cms.double(9.99), | ||
PartID = cms.vint32(11), | ||
MaxEta = cms.double(4.0), | ||
MaxPhi = cms.double(3.14159265359), | ||
MinEta = cms.double(-4.0), | ||
MinPhi = cms.double(-3.14159265359) ## in radians | ||
|
||
), | ||
Verbosity = cms.untracked.int32(0), ## set to 1 (or greater) for printouts | ||
|
||
psethack = cms.string('single electron pt 10'), | ||
AddAntiParticle = cms.bool(True), | ||
firstRun = cms.untracked.uint32(1) | ||
) |
19 changes: 19 additions & 0 deletions
19
Configuration/Generator/python/SingleElectronPt35Extended_cfi.py
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,19 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
generator = cms.EDProducer("FlatRandomPtGunProducer", | ||
PGunParameters = cms.PSet( | ||
MaxPt = cms.double(35.01), | ||
MinPt = cms.double(34.99), | ||
PartID = cms.vint32(11), | ||
MaxEta = cms.double(4.0), | ||
MaxPhi = cms.double(3.14159265359), | ||
MinEta = cms.double(-4.0), | ||
MinPhi = cms.double(-3.14159265359) ## in radians | ||
|
||
), | ||
Verbosity = cms.untracked.int32(0), ## set to 1 (or greater) for printouts | ||
|
||
psethack = cms.string('single electron pt 35'), | ||
AddAntiParticle = cms.bool(True), | ||
firstRun = cms.untracked.uint32(1) | ||
) |
19 changes: 19 additions & 0 deletions
19
Configuration/Generator/python/SingleGammaPt10Extended_cfi.py
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,19 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
generator = cms.EDProducer("FlatRandomPtGunProducer", | ||
PGunParameters = cms.PSet( | ||
MaxPt = cms.double(10.01), | ||
MinPt = cms.double(9.99), | ||
PartID = cms.vint32(22), | ||
MaxEta = cms.double(4.0), | ||
MaxPhi = cms.double(3.14159265359), | ||
MinEta = cms.double(-4.0), | ||
MinPhi = cms.double(-3.14159265359) ## in radians | ||
|
||
), | ||
Verbosity = cms.untracked.int32(0), ## set to 1 (or greater) for printouts | ||
|
||
psethack = cms.string('single gamma pt 10'), | ||
AddAntiParticle = cms.bool(True), | ||
firstRun = cms.untracked.uint32(1) | ||
) |
19 changes: 19 additions & 0 deletions
19
Configuration/Generator/python/SingleGammaPt35Extended_cfi.py
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,19 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
generator = cms.EDProducer("FlatRandomPtGunProducer", | ||
PGunParameters = cms.PSet( | ||
MaxPt = cms.double(35.01), | ||
MinPt = cms.double(34.99), | ||
PartID = cms.vint32(22), | ||
MaxEta = cms.double(4.0), | ||
MaxPhi = cms.double(3.14159265359), | ||
MinEta = cms.double(-4.0), | ||
MinPhi = cms.double(-3.14159265359) ## in radians | ||
|
||
), | ||
Verbosity = cms.untracked.int32(0), ## set to 1 (or greater) for printouts | ||
|
||
psethack = cms.string('single gamma pt 35'), | ||
AddAntiParticle = cms.bool(True), | ||
firstRun = cms.untracked.uint32(1) | ||
) |
19 changes: 19 additions & 0 deletions
19
Configuration/Generator/python/SingleMuPt1000Extended_cfi.py
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,19 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
generator = cms.EDProducer("FlatRandomPtGunProducer", | ||
PGunParameters = cms.PSet( | ||
MaxPt = cms.double(1000.01), | ||
MinPt = cms.double(999.99), | ||
PartID = cms.vint32(-13), | ||
MaxEta = cms.double(4.0), | ||
MaxPhi = cms.double(3.14159265359), | ||
MinEta = cms.double(-4.0), | ||
MinPhi = cms.double(-3.14159265359) ## in radians | ||
|
||
), | ||
Verbosity = cms.untracked.int32(0), ## set to 1 (or greater) for printouts | ||
|
||
psethack = cms.string('single mu pt 1000'), | ||
AddAntiParticle = cms.bool(True), | ||
firstRun = cms.untracked.uint32(1) | ||
) |
19 changes: 19 additions & 0 deletions
19
Configuration/Generator/python/SingleMuPt100Extended_cfi.py
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,19 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
generator = cms.EDProducer("FlatRandomPtGunProducer", | ||
PGunParameters = cms.PSet( | ||
MaxPt = cms.double(100.01), | ||
MinPt = cms.double(99.99), | ||
PartID = cms.vint32(-13), | ||
MaxEta = cms.double(4.0), | ||
MaxPhi = cms.double(3.14159265359), | ||
MinEta = cms.double(-4.0), | ||
MinPhi = cms.double(-3.14159265359) ## in radians | ||
|
||
), | ||
Verbosity = cms.untracked.int32(0), ## set to 1 (or greater) for printouts | ||
|
||
psethack = cms.string('single mu pt 100'), | ||
AddAntiParticle = cms.bool(True), | ||
firstRun = cms.untracked.uint32(1) | ||
) |
19 changes: 19 additions & 0 deletions
19
Configuration/Generator/python/SingleMuPt10Extended_cfi.py
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,19 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
generator = cms.EDProducer("FlatRandomPtGunProducer", | ||
PGunParameters = cms.PSet( | ||
MaxPt = cms.double(10.01), | ||
MinPt = cms.double(9.99), | ||
PartID = cms.vint32(-13), | ||
MaxEta = cms.double(4.0), | ||
MaxPhi = cms.double(3.14159265359), | ||
MinEta = cms.double(-4.0), | ||
MinPhi = cms.double(-3.14159265359) ## in radians | ||
|
||
), | ||
Verbosity = cms.untracked.int32(0), ## set to 1 (or greater) for printouts | ||
|
||
psethack = cms.string('single mu pt 10'), | ||
AddAntiParticle = cms.bool(True), | ||
firstRun = cms.untracked.uint32(1) | ||
) |
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,19 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
generator = cms.EDProducer("FlatRandomPtGunProducer", | ||
PGunParameters = cms.PSet( | ||
MaxPt = cms.double(1.01), | ||
MinPt = cms.double(0.99), | ||
PartID = cms.vint32(-13), | ||
MaxEta = cms.double(4.0), | ||
MaxPhi = cms.double(3.14159265359), | ||
MinEta = cms.double(-4.0), | ||
MinPhi = cms.double(-3.14159265359) ## in radians | ||
|
||
), | ||
Verbosity = cms.untracked.int32(0), ## set to 1 (or greater) for printouts | ||
|
||
psethack = cms.string('single mu pt 1'), | ||
AddAntiParticle = cms.bool(True), | ||
firstRun = cms.untracked.uint32(1) | ||
) |
20 changes: 20 additions & 0 deletions
20
Configuration/Generator/python/TenMuExtendedE_0_200_cfi.py
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,20 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# Modified from Configuration/Generator/python/SingleMuPt10_cfi.py | ||
generator = cms.EDProducer("FlatRandomEGunProducer", | ||
PGunParameters = cms.PSet( | ||
MaxE = cms.double(200.0), | ||
MinE = cms.double(0.0), | ||
PartID = cms.vint32(-13,-13,-13,-13,-13), | ||
MaxEta = cms.double(4.0), | ||
MaxPhi = cms.double(3.14159265359), | ||
MinEta = cms.double(-4.0), | ||
MinPhi = cms.double(-3.14159265359) ## in radians | ||
|
||
), | ||
Verbosity = cms.untracked.int32(0), ## set to 1 (or greater) for printouts | ||
|
||
psethack = cms.string('Ten mu e 0 to 200'), | ||
AddAntiParticle = cms.bool(True), | ||
firstRun = cms.untracked.uint32(1) | ||
) |
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
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
Oops, something went wrong.