File indexing completed on 2024-04-06 12:11:26
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("HLT")
0004
0005
0006 process.maxEvents = cms.untracked.PSet(
0007 input = cms.untracked.int32(100)
0008 )
0009
0010
0011 process.load("IOMC.RandomEngine.IOMC_cff")
0012
0013
0014 process.load("FastSimulation.Configuration.ttbar_cfi")
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035 process.load("FastSimulation.Configuration.CommonInputs_cff")
0036
0037
0038 process.load("FastSimulation.HighLevelTrigger.HLTSetup_cff")
0039
0040
0041 process.load("FastSimulation.Configuration.FamosSequences_cff")
0042
0043
0044
0045 process.load("Configuration.StandardSequences.MagneticField_38T_cff")
0046 process.VolumeBasedMagneticFieldESProducer.useParametrizedTrackerField = True
0047
0048
0049
0050 process.load("FastSimulation.Configuration.HLT_cff")
0051
0052
0053 process.HLTEndSequence = cms.Sequence(process.reconstructionWithFamos)
0054
0055
0056
0057
0058 process.reconstruction = cms.Path(process.reconstructionWithFamos)
0059 process.schedule.append(process.reconstruction)
0060
0061
0062 process.simulation = cms.Sequence(process.simulationWithFamos)
0063
0064 process.fastSimProducer.SimulateCalorimetry = True
0065 for layer in process.fastSimProducer.detectorDefinition.BarrelLayers:
0066 layer.interactionModels = cms.untracked.vstring("pairProduction", "nuclearInteraction", "bremsstrahlung", "energyLoss", "multipleScattering", "trackerSimHits")
0067 for layer in process.fastSimProducer.detectorDefinition.ForwardLayers:
0068 layer.interactionModels = cms.untracked.vstring("pairProduction", "nuclearInteraction", "bremsstrahlung", "energyLoss", "multipleScattering", "trackerSimHits")
0069
0070 process.VolumeBasedMagneticFieldESProducer.useParametrizedTrackerField = True
0071
0072 process.famosPileUp.PileUpSimulator.averageNumber = 0.0
0073
0074
0075 process.GlobalTag.globaltag = "IDEAL_31X::All"
0076
0077
0078
0079 process.fastSimProducer.VertexGenerator.SigmaZ=cms.double(3.8)
0080 process.fastSimProducer.VertexGenerator.Emittance = cms.double(7.03e-08)
0081 process.fastSimProducer.VertexGenerator.BetaStar = cms.double(300.0)
0082
0083
0084 process.caloRecHits.RecHitsFactory.doMiscalib = False
0085
0086
0087 process.fastSimProducer.detectorDefinition.trackerAlignmentLabel = cms.untracked.string("MisAligned")
0088 process.misalignedTrackerGeometry.applyAlignment = True
0089
0090
0091
0092 process.caloRecHits.RecHitsFactory.HCAL.Refactor = 1.0
0093 process.caloRecHits.RecHitsFactory.HCAL.Refactor_mean = 1.0
0094
0095
0096
0097
0098
0099
0100
0101
0102 process.load("FastSimulation.Configuration.EventContent_cff")
0103 process.o1 = cms.OutputModule("PoolOutputModule",
0104 process.FEVTDEBUGHLTEventContent,
0105 fileName = cms.untracked.string('Output.root'),
0106 dataset = cms.untracked.PSet(
0107 dataTier = cms.untracked.string('GEN-SIM-DIGI-HLTDEBUG-RECO')
0108 )
0109 )
0110 process.outpath = cms.EndPath(process.o1)
0111
0112
0113 process.schedule.append(process.outpath)
0114
0115 process.configurationMetadata = cms.untracked.PSet(
0116 version = cms.untracked.string('$Revision: 1.6 $'),
0117 name = cms.untracked.string('$Source: /cvs/CMSSW/CMSSW/FastSimulation/Validation/test/Template_cfg.py,v $'),
0118 annotation = cms.untracked.string('RelVal Fast Sim ==SAMPLE== IDEAL')
0119 )
0120
0121
0122
0123
0124
0125
0126