-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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 #18 from dildick/GEM-ME0-Full-Sim_RecHits
Gem me0 full sim rec hits
- Loading branch information
Showing
85 changed files
with
10,619 additions
and
1,089 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) | ||
) |
33 changes: 33 additions & 0 deletions
33
Configuration/Geometry/python/GeometryExtendedPhase1Pixel10DReco_cff.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,33 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# Ideal geometry, needed for transient ECAL alignement | ||
from Configuration.Geometry.GeometryExtendedPhase1Pixel10D_cff import * | ||
|
||
|
||
|
||
# Reconstruction geometry services | ||
# Tracking Geometry | ||
#bah - well, this is not a cfi! | ||
from Geometry.CommonDetUnit.globalTrackingSLHCGeometry_cfi import * | ||
|
||
#Tracker | ||
from RecoTracker.GeometryESProducer.TrackerRecoGeometryESProducer_cfi import * | ||
from Geometry.TrackerNumberingBuilder.trackerTopologyConstants_cfi import * | ||
|
||
#Muon | ||
from Geometry.MuonNumbering.muonNumberingInitialization_cfi import * | ||
from RecoMuon.DetLayers.muonDetLayerGeometry_cfi import * | ||
|
||
# Alignment | ||
from Geometry.TrackerGeometryBuilder.idealForDigiTrackerSLHCGeometry_cff import * | ||
from Geometry.CSCGeometryBuilder.idealForDigiCscGeometry_cff import * | ||
from Geometry.DTGeometryBuilder.idealForDigiDtGeometry_cff import * | ||
trackerSLHCGeometry.applyAlignment = cms.bool(False) | ||
|
||
# Calorimeters | ||
from Geometry.CaloEventSetup.CaloTopology_cfi import * | ||
from Geometry.CaloEventSetup.CaloGeometry_cff import * | ||
from Geometry.CaloEventSetup.EcalTrigTowerConstituents_cfi import * | ||
from Geometry.EcalMapping.EcalMapping_cfi import * | ||
from Geometry.EcalMapping.EcalMappingRecord_cfi import * | ||
from Geometry.HcalCommonData.hcalRecNumberingInitialization_cfi import * |
9 changes: 9 additions & 0 deletions
9
Configuration/Geometry/python/GeometryExtendedPhase1Pixel10D_cff.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,9 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# | ||
# Geometry master configuration | ||
# | ||
# Ideal geometry, needed for simulation | ||
from Geometry.CMSCommonData.cmsExtendedGeometryPhase1Pixel10DXML_cfi import * | ||
from Geometry.TrackerNumberingBuilder.trackerNumberingSLHCGeometry_cfi import * | ||
from Geometry.HcalCommonData.hcalSimNumberingInitialization_cfi import * |
Oops, something went wrong.