Beispiel #1
0
    triggerCellInputTag=cms.InputTag(
        "hgcalTriggerPrimitiveDigiProducer:SingleCellClusterAlgoBestChoice"))

process.test_step = cms.Path(process.TC_CalibWeight)

process.endjob_step = cms.EndPath(process.endOfProcess)
process.FEVTDEBUGoutput_step = cms.EndPath(process.FEVTDEBUGoutput)

# load ntuplizer
process.load('L1Trigger.L1THGCal.hgcalTriggerNtuples_cff')
process.ntuple_step = cms.Path(process.hgcalTriggerNtuples)

# Schedule definition
process.schedule = cms.Schedule(
    process.generation_step, process.genfiltersummary_step,
    process.simulation_step, process.digitisation_step,
    process.L1simulation_step, process.hgcl1tpg_step, process.digi2raw_step,
    process.test_step, process.ntuple_step, process.endjob_step,
    process.FEVTDEBUGoutput_step)

# filter all path with the production filter sequence
for path in process.paths:
    getattr(process,
            path)._seq = process.generator * getattr(process, path)._seq

# Automatic addition of the customisation function from SLHCUpgradeSimulations.Configuration.combinedCustoms
from SLHCUpgradeSimulations.Configuration.combinedCustoms import cust_2023tilted

#call to customisation function cust_2023tilted imported from SLHCUpgradeSimulations.Configuration.combinedCustoms
process = cust_2023tilted(process)
Beispiel #2
0
    dataset = cms.untracked.PSet(
        filterName = cms.untracked.string(''),
        dataTier = cms.untracked.string('')
    )
)
process.load('SimTracker.SiPhase2Digitizer.Phase2TrackerMonitorDigi_cfi')
process.load('SimTracker.SiPhase2Digitizer.Phase2TrackerValidateDigi_cfi')

process.digiana_seq = cms.Sequence(process.digiMon )


process.load('DQMServices.Components.DQMEventInfo_cfi')
process.dqmEnv.subSystemFolder = cms.untracked.string('Ph2TkDigi')

process.dqm_comm = cms.Sequence(process.dqmEnv)

# Path and EndPath definitions
process.endjob_step = cms.EndPath(process.endOfProcess)
process.DQMoutput_step = cms.EndPath(process.DQMoutput)

#process.digi_step = cms.Sequence(process.siPixelRawData*process.siPixelDigis)
process.p = cms.Path(process.digiana_seq * process.dqm_comm )

# customisation of the process.                                                                                                                              

# Automatic addition of the customisation function from SLHCUpgradeSimulations.Configuration.combinedCustoms                                                 
from SLHCUpgradeSimulations.Configuration.combinedCustoms import cust_2023tilted

#call to customisation function cust_2023tilted imported from SLHCUpgradeSimulations.Configuration.combinedCustoms                                          
process = cust_2023tilted(process)