ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/Configuration/python/BAMBUProd_RECOSIM.py
Revision: 1.11
Committed: Thu Nov 5 21:38:09 2009 UTC (15 years, 6 months ago) by bendavid
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_012b, Mit_012a, Mit_012
Changes since 1.10: +1 -1 lines
Log Message:
Updated global tags and example files

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     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.8 version = cms.untracked.string('Mit_011a'),
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.11 fileNames = cms.untracked.vstring('file:/build/bendavid/RECOSIM/RelValProdTTbar_CMSSW_3_3_2-MC_31X_V9-v3_GEN-SIM-RECO/40709A79-C0C7-DE11-90E6-003048D15DB6.root')
32 bendavid 1.1 )
33 ceballos 1.7 process.source.inputCommands = cms.untracked.vstring("keep *","drop *_MEtoEDMConverter_*_*")
34 bendavid 1.1
35 loizides 1.3 # other statements
36 bendavid 1.10 process.GlobalTag.globaltag = 'MC_31X_V9::All'
37 bendavid 1.1
38     process.add_(cms.Service("ObjectService"))
39    
40     process.load("MitProd.BAMBUSequences.BambuFillRECOSIM_cfi")
41    
42     process.bambu_step = cms.Path(process.BambuFillRECOSIM)
43    
44 loizides 1.3 # schedule definition
45 bendavid 1.8 process.schedule = cms.Schedule(process.bambu_step)