Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:41:51

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("Demo")
0004 
0005 process.load("Configuration.Geometry.GeometryIdeal_cff")
0006 process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
0007 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(1) )
0008 process.GlobalTag.globaltag = "START62_V1::All"
0009 
0010 process.source = cms.Source("EmptySource")
0011 
0012 process.demo = cms.EDAnalyzer("MapTester",
0013 #    mapIOV = cms.uint32(1), # HO pre 2009
0014 #    mapIOV = cms.uint32(2), # HO 2009 until May 6
0015 #    mapIOV = cms.uint32(3), # HO May 6 2009 and onwards
0016 #    mapIOV = cms.uint32(4), # ZDC Oct 12 2009 and onwards
0017     mapIOV = cms.uint32(5), # Remapping HO ring 0 for SiPMs
0018     generateTextfiles = cms.bool(True),
0019     generateEmap      = cms.bool(True),
0020 )
0021 
0022 process.p = cms.Path(process.demo)