ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/Processing/filefi/014/startup.py
Revision: 1.1
Committed: Fri Jun 18 21:41:15 2010 UTC (14 years, 10 months ago) by paus
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_014d, Mit_014c, Mit_014b
Log Message:
Config.

File Contents

# User Rev Content
1 paus 1.1 # $Id:#
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_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     version = cms.untracked.string('Mit_014a'),
17     annotation = cms.untracked.string('RECOSIMStartup'),
18     name = cms.untracked.string('BambuProduction')
19     )
20    
21     process.maxEvents = cms.untracked.PSet(
22     input = cms.untracked.int32(-1)
23     )
24     process.options = cms.untracked.PSet(
25     Rethrow = cms.untracked.vstring('ProductNotFound'),
26     fileMode = cms.untracked.string('NOMERGE'),
27     )
28    
29     # input source
30     process.source = cms.Source("PoolSource",
31     fileNames = cms.untracked.vstring('file:/build/bendavid/RECOSIMSummer09/TTbar_Summer09-MC_3XY_V25_preproduction-v1/969AE5D9-DA2B-DF11-931D-001CC4C10E02.root')
32     )
33     process.source.inputCommands = cms.untracked.vstring("keep *", "drop *_MEtoEDMConverter_*_*", "drop L1GlobalTriggerObjectMapRecord_hltL1GtObjectMap__HLT")
34    
35     # other statements
36    
37     #special global tag for 900GeV startup beamspot conditions and startup (CRAFT-knowledge) alignment scenario
38     process.GlobalTag.globaltag = 'START36_V9::All'
39    
40     process.add_(cms.Service("ObjectService"))
41    
42     process.load("MitProd.BAMBUSequences.BambuFillRECOSIM_cfi")
43    
44     # set the name for the output file
45     process.MitTreeFiller.TreeWriter.fileName = 'XX-MITDATASET-XX'
46     process.MitTreeFiller.TreeWriter.maxSize = cms.untracked.uint32(1790)
47    
48     process.bambu_step = cms.Path(process.BambuFillRECOSIM)
49    
50     # schedule definition
51     process.schedule = cms.Schedule(process.bambu_step)