Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:44:32

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # upload to database 
0004 
0005 #string timetype = "timestamp"    
0006 
0007 import FWCore.ParameterSet.Config as cms
0008 
0009 process = cms.Process("Reader")
0010 
0011 process.MessageLogger = cms.Service("MessageLogger",
0012     LorentzAngleReaderDebug = cms.untracked.PSet(
0013         threshold = cms.untracked.string('DEBUG')
0014     ),
0015     LorentzAngleReaderSummary = cms.untracked.PSet(
0016         threshold = cms.untracked.string('INFO')
0017     ),
0018     cerr = cms.untracked.PSet(
0019         enable = cms.untracked.bool(False)
0020     ),
0021     cout = cms.untracked.PSet(
0022         threshold = cms.untracked.string('INFO')
0023     ),
0024     debugModules = cms.untracked.vstring('*'),
0025     files = cms.untracked.PSet(
0026         LorentzAngleSimReaderDebug = cms.untracked.PSet(
0027 
0028         ),
0029         LorentzAngleSimReaderSummary = cms.untracked.PSet(
0030 
0031         )
0032     )
0033 )
0034 
0035 
0036 process.maxEvents = cms.untracked.PSet(
0037     input = cms.untracked.int32(1)
0038 )
0039 process.source = cms.Source("EmptySource",
0040     numberEventsInRun = cms.untracked.uint32(1),
0041     firstRun = cms.untracked.uint32(100000)
0042 )
0043 
0044 process.load('Configuration/StandardSequences/FrontierConditions_GlobalTag_cff')
0045 process.GlobalTag.globaltag = 'IDEAL_30X::All'
0046 
0047 #process.poolDBESSource = cms.ESSource("PoolDBESSource",
0048 #   BlobStreamerName = cms.untracked.string('TBufferBlobStreamingService'),
0049 #   DBParameters = cms.PSet(
0050 #        messageLevel = cms.untracked.int32(2),
0051 #        authenticationPath = cms.untracked.string('/afs/cern.ch/cms/DB/conddb')
0052 #    ),
0053 #    timetype = cms.untracked.string('runnumber'),
0054 #    connect = cms.string('sqlite_file:dbfile.db'),
0055 #    toGet = cms.VPSet(cms.PSet(
0056 #        record = cms.string('SiStripLorentzAngleSimRcd'),
0057 #        tag = cms.string('SiStripLorentzAngle_IdealSim_31X')
0058 #    ))
0059 #)
0060 
0061 process.reader = cms.EDFilter("SiStripLorentzAngleSimDummyPrinter")
0062                               
0063 process.p1 = cms.Path(process.reader)
0064 
0065