ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/Processing/filefi/014/data.py
Revision: 1.3
Committed: Sat Oct 23 12:43:55 2010 UTC (14 years, 6 months ago) by ceballos
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_024b, Mit_025pre1, Mit_024a, Mit_024, 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
Changes since 1.2: +2 -2 lines
Log Message:
some updates

File Contents

# User Rev Content
1 paus 1.2 # $Id: data.py,v 1.1 2010/06/18 21:41:15 paus Exp $
2 paus 1.1
3     import FWCore.ParameterSet.Config as cms
4    
5 ceballos 1.3 process = cms.Process('FILLER')
6 paus 1.1
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 ceballos 1.3 version = cms.untracked.string('Mit_014a'),
17 paus 1.1 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/Run2010A/EG/RECO/v2/000/136/100/A687F4BC-E667-DF11-947D-001617E30E2C.root')
33     )
34     process.source.inputCommands = cms.untracked.vstring("keep *", "drop *_MEtoEDMConverter_*_*", "drop L1GlobalTriggerObjectMapRecord_hltL1GtObjectMap__HLT")
35    
36     # other statements
37 paus 1.2 process.GlobalTag.globaltag = 'GR10_P_V10::All'
38 paus 1.1
39     process.add_(cms.Service("ObjectService"))
40    
41     process.load("MitProd.BAMBUSequences.BambuFillRECO_cfi")
42    
43     # set the name for the output file
44     process.MitTreeFiller.TreeWriter.fileName = 'XX-MITDATASET-XX'
45     process.MitTreeFiller.TreeWriter.maxSize = cms.untracked.uint32(1790)
46    
47     process.bambu_step = cms.Path(process.BambuFillRECO)
48    
49     # schedule definition
50     process.schedule = cms.Schedule(process.bambu_step)