Revision: | 1.2 |
Committed: | Mon May 10 20:48:18 2010 UTC (14 years, 11 months ago) by bendavid |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | Mit_032, Mit_031, Mit_025c_branch2, Mit_025c_branch1, Mit_030, Mit_029c, Mit_029b, Mit_030_pre1, Mit_029a, Mit_029, Mit_029_pre1, Mit_028a, Mit_025c_branch0, Mit_028, Mit_027a, Mit_027, Mit_026, Mit_025e, Mit_025d, Mit_025c, Mit_025b, Mit_025a, Mit_025, Mit_025pre2, Mit_024b, Mit_025pre1, Mit_024a, Mit_024, Mit_023, Mit_022a, Mit_022, Mit_020d, TMit_020d, Mit_020c, Mit_021, Mit_021pre2, Mit_021pre1, Mit_020b, Mit_020a, Mit_020, Mit_020pre1, Mit_018, Mit_017, Mit_017pre3, Mit_017pre2, Mit_017pre1, Mit_016, Mit_015b, Mit_015a, Mit_015, Mit_014e, Mit_014d, Mit_014c, Mit_014b, Mit_014a, Mit_014, Mit_014pre3, Mit_014pre2, Mit_014pre1, HEAD |
Branch point for: | Mit_025c_branch |
Changes since 1.1: | +3 -3 lines |
Log Message: | Update top level configs |
# | Content |
---|---|
1 | # $Id: BAMBUProd_RECO2009.py,v 1.1 2010/03/25 18:51:41 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/GeometryIdeal_cff') |
11 | process.load('Configuration/StandardSequences/MagneticField_AutoFromDBCurrent_cff') |
12 | process.load('Configuration/StandardSequences/FrontierConditions_GlobalTag_cff') |
13 | process.load('Configuration/EventContent/EventContent_cff') |
14 | |
15 | process.configurationMetadata = cms.untracked.PSet( |
16 | version = cms.untracked.string('Mit_014'), |
17 | annotation = cms.untracked.string('RECO'), |
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 | fileNames = cms.untracked.vstring('/store/data/BeamCommissioning09/MinimumBias/RAW-RECO/18thFebPreProd_351p1_BSCNOBEAMHALO-v2/0000/48DDC2F8-471E-DF11-A427-00237DA1A548.root') |
33 | ) |
34 | process.source.inputCommands = cms.untracked.vstring("keep *", "drop *_MEtoEDMConverter_*_*", "drop L1GlobalTriggerObjectMapRecord_hltL1GtObjectMap__HLT") |
35 | |
36 | # other statements |
37 | process.GlobalTag.globaltag = 'GR_R_36X_V7::All' |
38 | |
39 | process.add_(cms.Service("ObjectService")) |
40 | |
41 | process.load("MitProd.BAMBUSequences.BambuFillRECO_cfi") |
42 | |
43 | process.MitTreeFiller.TreeWriter.fileName = 'XX-MITDATASET-XX' |
44 | |
45 | process.bambu_step = cms.Path(process.BambuFillRECO) |
46 | |
47 | # schedule definition |
48 | process.schedule = cms.Schedule(process.bambu_step) |