ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/Configuration/python/BAMBUProd_RECODEBUG.py
Revision: 1.23
Committed: Mon Oct 18 01:35:27 2010 UTC (14 years, 6 months ago) by bendavid
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_016, Mit_015b, Mit_015a, Mit_015
Changes since 1.22: +3 -2 lines
Log Message:
update top level cfgs

File Contents

# Content
1 # $Id: BAMBUProd_RECODEBUG.py,v 1.22 2010/09/19 23:48:44 bendavid Exp $
2
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.Reconstruction_cff')
11 process.load('Configuration.StandardSequences.GeometryDB_cff')
12 process.load('Configuration/StandardSequences/MagneticField_38T_cff')
13 process.load('Configuration/StandardSequences/FrontierConditions_GlobalTag_cff')
14 process.load('Configuration/EventContent/EventContent_cff')
15
16 process.configurationMetadata = cms.untracked.PSet(
17 version = cms.untracked.string('Mit_014'),
18 annotation = cms.untracked.string('RECODEBUG'),
19 name = cms.untracked.string('BambuProduction')
20 )
21
22 process.maxEvents = cms.untracked.PSet(
23 input = cms.untracked.int32(-1)
24 )
25
26 process.options = cms.untracked.PSet(
27 Rethrow = cms.untracked.vstring('ProductNotFound'),
28 fileMode = cms.untracked.string('NOMERGE'),
29 )
30
31 # input source
32 process.source = cms.Source("PoolSource",
33 fileNames = cms.untracked.vstring('file:/data/blue/bendavid/fall10preproduction-qcd-gensimrecodebug/8A1C614F-00A9-DF11-98A2-002481CFE888.root')
34 )
35 process.source.inputCommands = cms.untracked.vstring("keep *", "drop *_MEtoEDMConverter_*_*", "drop L1GlobalTriggerObjectMapRecord_hltL1GtObjectMap__HLT")
36
37 # other statements
38 process.GlobalTag.globaltag = 'START38_V12::All'
39
40 process.add_(cms.Service("ObjectService"))
41
42 process.load("MitProd.BAMBUSequences.BambuFillRECODEBUG_cfi")
43
44 process.MitTreeFiller.TreeWriter.fileName = 'XX-MITDATASET-XX'
45
46 #hack pixelLess tracking back (present in special startup MC samples)
47 #process.MitTreeFiller.PixelLessTracks.active = True
48
49 process.bambu_step = cms.Path(process.BambuFillRECODEBUG)
50
51 # schedule definition
52 process.schedule = cms.Schedule(process.bambu_step)