ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/Configuration/python/BAMBUProd_RECOSIM.py
Revision: 1.29
Committed: Sun May 15 20:41:34 2011 UTC (13 years, 11 months ago) by bendavid
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_023, Mit_022a, Mit_022, Mit_021, Mit_021pre2
Changes since 1.28: +2 -2 lines
Log Message:
update top-level cfgs

File Contents

# User Rev Content
1 ceballos 1.7 # $Id:#
2 loizides 1.3
3 bendavid 1.1 import FWCore.ParameterSet.Config as cms
4    
5     process = cms.Process('FILLER')
6    
7     # import of standard configurations
8     process.load('Configuration/StandardSequences/Services_cff')
9     process.load('FWCore/MessageService/MessageLogger_cfi')
10 bendavid 1.25 process.load('Configuration.StandardSequences.GeometryDB_cff')
11 bendavid 1.1 process.load('Configuration/StandardSequences/MagneticField_38T_cff')
12     process.load('Configuration/StandardSequences/FrontierConditions_GlobalTag_cff')
13     process.load('Configuration/EventContent/EventContent_cff')
14    
15     process.configurationMetadata = cms.untracked.PSet(
16 bendavid 1.26 version = cms.untracked.string('Mit_017'),
17 loizides 1.3 annotation = cms.untracked.string('RECOSIM'),
18     name = cms.untracked.string('BambuProduction')
19 bendavid 1.1 )
20 loizides 1.3
21 bendavid 1.1 process.maxEvents = cms.untracked.PSet(
22     input = cms.untracked.int32(-1)
23     )
24     process.options = cms.untracked.PSet(
25 ceballos 1.7 Rethrow = cms.untracked.vstring('ProductNotFound'),
26 bendavid 1.8 fileMode = cms.untracked.string('NOMERGE'),
27 bendavid 1.1 )
28 loizides 1.3
29     # input source
30 bendavid 1.1 process.source = cms.Source("PoolSource",
31 bendavid 1.19 #fileNames = cms.untracked.vstring('/store/relval/CMSSW_3_5_2/RelValTTbar/GEN-SIM-RECO/MC_3XY_V21-v1/0016/62FDDFEB-391E-DF11-890A-001731A28BE1.root')
32 bendavid 1.29 fileNames = cms.untracked.vstring('/store/relval/CMSSW_4_2_3/RelValProdTTbar/GEN-SIM-RECO/MC_42_V12-v2/0062/82A88DE4-FB7A-E011-B69E-001A928116CC.root')
33 bendavid 1.1 )
34 bendavid 1.15 process.source.inputCommands = cms.untracked.vstring("keep *", "drop *_MEtoEDMConverter_*_*", "drop L1GlobalTriggerObjectMapRecord_hltL1GtObjectMap__HLT")
35 bendavid 1.1
36 loizides 1.3 # other statements
37 bendavid 1.29 process.GlobalTag.globaltag = 'MC_42_V12::All'
38 bendavid 1.1
39     process.add_(cms.Service("ObjectService"))
40    
41     process.load("MitProd.BAMBUSequences.BambuFillRECOSIM_cfi")
42    
43 bendavid 1.12 process.MitTreeFiller.TreeWriter.fileName = 'XX-MITDATASET-XX'
44    
45 bendavid 1.1 process.bambu_step = cms.Path(process.BambuFillRECOSIM)
46    
47 loizides 1.3 # schedule definition
48 bendavid 1.8 process.schedule = cms.Schedule(process.bambu_step)