ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/Configuration/python/BAMBUProd_RECO.py
Revision: 1.23
Committed: Tue Apr 27 14:29:40 2010 UTC (15 years ago) by bendavid
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_013d
Changes since 1.22: +3 -3 lines
Log Message:
Add fastsim config and update global tags

File Contents

# User Rev Content
1 bendavid 1.23 # $Id: BAMBUProd_RECO.py,v 1.22 2010/03/25 17:13:53 bendavid Exp $
2 loizides 1.2
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 bendavid 1.6 process.load('Configuration/StandardSequences/MagneticField_AutoFromDBCurrent_cff')
12 bendavid 1.1 process.load('Configuration/StandardSequences/FrontierConditions_GlobalTag_cff')
13     process.load('Configuration/EventContent/EventContent_cff')
14    
15     process.configurationMetadata = cms.untracked.PSet(
16 bendavid 1.20 version = cms.untracked.string('Mit_013'),
17 loizides 1.4 annotation = cms.untracked.string('RECO'),
18 loizides 1.2 name = cms.untracked.string('BambuProduction')
19 bendavid 1.1 )
20 loizides 1.2
21 bendavid 1.1 process.maxEvents = cms.untracked.PSet(
22     input = cms.untracked.int32(-1)
23     )
24 loizides 1.2
25 bendavid 1.1 process.options = cms.untracked.PSet(
26 bendavid 1.6 Rethrow = cms.untracked.vstring('ProductNotFound'),
27     fileMode = cms.untracked.string('NOMERGE'),
28 bendavid 1.1 )
29 loizides 1.2
30     # input source
31 bendavid 1.1 process.source = cms.Source("PoolSource",
32 bendavid 1.23 fileNames = cms.untracked.vstring('/store/data/Commissioning10/MinimumBias/RECO/v9/000/133/747/C2FB7D15-8A4D-DF11-89B3-000423D94AA8.root')
33 bendavid 1.1 )
34 bendavid 1.14 process.source.inputCommands = cms.untracked.vstring("keep *", "drop *_MEtoEDMConverter_*_*", "drop L1GlobalTriggerObjectMapRecord_hltL1GtObjectMap__HLT")
35 bendavid 1.1
36 loizides 1.2 # other statements
37 bendavid 1.23 process.GlobalTag.globaltag = 'GR10_P_V5::All'
38 bendavid 1.1
39     process.add_(cms.Service("ObjectService"))
40    
41     process.load("MitProd.BAMBUSequences.BambuFillRECO_cfi")
42    
43 bendavid 1.12 process.MitTreeFiller.TreeWriter.fileName = 'XX-MITDATASET-XX'
44    
45 bendavid 1.1 process.bambu_step = cms.Path(process.BambuFillRECO)
46    
47 loizides 1.2 # schedule definition
48 bendavid 1.6 process.schedule = cms.Schedule(process.bambu_step)