ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/Configuration/python/BAMBUProd_RECOSIMStartup.py
Revision: 1.7
Committed: Mon Jan 18 17:48:43 2010 UTC (15 years, 3 months ago) by bendavid
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_012i
Changes since 1.6: +1 -1 lines
Log Message:
Update metadata string

File Contents

# User Rev Content
1 bendavid 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 bendavid 1.7 version = cms.untracked.string('Mit_012i'),
17 bendavid 1.2 annotation = cms.untracked.string('RECOSIMStartup'),
18 bendavid 1.1 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/RECOSIMStartup/MinBiasStartup900GeV334/7A31312F-0AD7-DE11-9A93-0018F3D095F6.root')
32     )
33 bendavid 1.4 process.source.inputCommands = cms.untracked.vstring("keep *", "drop *_MEtoEDMConverter_*_*", "drop L1GlobalTriggerObjectMapRecord_hltL1GtObjectMap__HLT")
34 bendavid 1.1
35     # other statements
36    
37     #special global tag for 900GeV startup beamspot conditions and startup (CRAFT-knowledge) alignment scenario
38 bendavid 1.6 process.GlobalTag.globaltag = 'STARTUP3X_V8K::All'
39 bendavid 1.1
40     process.add_(cms.Service("ObjectService"))
41    
42     process.load("MitProd.BAMBUSequences.BambuFillRECOSIM_cfi")
43    
44 bendavid 1.2 process.MitTreeFiller.TreeWriter.fileName = 'XX-MITDATASET-XX'
45    
46 bendavid 1.1 #hack pixelLess tracking back (present in special startup MC samples)
47     process.MitTreeFiller.PixelLessTracks.active = True
48    
49     process.bambu_step = cms.Path(process.BambuFillRECOSIM)
50    
51     # schedule definition
52     process.schedule = cms.Schedule(process.bambu_step)