ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/Configuration/python/BAMBUProd_FASTSIM.py
Revision: 1.11
Committed: Sun Oct 9 14:15:05 2011 UTC (13 years, 6 months ago) by bendavid
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_025c_branch2, Mit_025c_branch1, Mit_025c_branch0, Mit_025e, Mit_025d, Mit_025c, Mit_025b, Mit_025a, Mit_025
Branch point for: Mit_025c_branch
Changes since 1.10: +2 -2 lines
Log Message:
configs and sequences for 42x backwards compatibility

File Contents

# User Rev Content
1 bendavid 1.11 # $Id: BAMBUProd_FASTSIM.py,v 1.10 2011/09/12 15:21:38 bendavid Exp $
2 bendavid 1.1
3     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     process.load('Configuration/StandardSequences/GeometryIdeal_cff')
11     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.2 version = cms.untracked.string('Mit_014'),
17 bendavid 1.1 annotation = cms.untracked.string('AODSIM'),
18     name = cms.untracked.string('BambuProduction')
19     )
20    
21     process.maxEvents = cms.untracked.PSet(
22     input = cms.untracked.int32(-1)
23     )
24    
25     process.options = cms.untracked.PSet(
26     Rethrow = cms.untracked.vstring('ProductNotFound'),
27     fileMode = cms.untracked.string('NOMERGE'),
28     )
29    
30     # input source
31     process.source = cms.Source("PoolSource",
32 bendavid 1.8 fileNames = cms.untracked.vstring('/store/relval/CMSSW_4_2_3/RelValTTbar/GEN-SIM-DIGI-RECO/START42_V12_FastSim_PU_156BxLumiPileUp-v1/0072/14584CA0-B17C-E011-B98B-001BFCDBD190.root')
33 bendavid 1.1 )
34     process.source.inputCommands = cms.untracked.vstring("keep *", "drop *_MEtoEDMConverter_*_*", "drop L1GlobalTriggerObjectMapRecord_hltL1GtObjectMap__HLT")
35    
36     # other statements
37 bendavid 1.11 process.GlobalTag.globaltag = 'START44_V6::All'
38 bendavid 1.1
39     process.add_(cms.Service("ObjectService"))
40    
41     process.load("MitProd.BAMBUSequences.BambuFillFASTSIM_cfi")
42    
43     process.MitTreeFiller.TreeWriter.fileName = 'XX-MITDATASET-XX'
44    
45     process.bambu_step = cms.Path(process.BambuFillFASTSIM)
46    
47     # schedule definition
48     process.schedule = cms.Schedule(process.bambu_step)