ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/Configuration/python/BAMBUProd_RECOSIMStartup.py
Revision: 1.10
Committed: Thu Mar 25 18:51:41 2010 UTC (15 years, 1 month ago) by bendavid
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_013c, Mit_013b, Mit_013a, Mit_013
Changes since 1.9: +2 -2 lines
Log Message:
update config files

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.8 version = cms.untracked.string('Mit_013'),
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 bendavid 1.10 fileNames = cms.untracked.vstring('file:/build/bendavid/RECOSIMSummer09/TTbar_Summer09-MC_3XY_V25_preproduction-v1/969AE5D9-DA2B-DF11-931D-001CC4C10E02.root')
32 bendavid 1.1 )
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.9 process.GlobalTag.globaltag = 'START3X_V25::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 bendavid 1.10 #process.MitTreeFiller.PixelLessTracks.active = True
48 bendavid 1.1
49     process.bambu_step = cms.Path(process.BambuFillRECOSIM)
50    
51     # schedule definition
52     process.schedule = cms.Schedule(process.bambu_step)