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.12 |
version = cms.untracked.string('Mit_014'),
|
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.14 |
fileNames = cms.untracked.vstring(
|
32 |
|
|
#'file:/data/blue/peveraer/FAF65B97-5490-DF11-8168-0030487FA4CD.root',
|
33 |
|
|
'file:/server/02a/bendavid/ttbarSpring10/F65B25B3-AA4E-DF11-AD8A-001E0B5FC422.root'
|
34 |
|
|
)
|
35 |
bendavid |
1.1 |
)
|
36 |
bendavid |
1.4 |
process.source.inputCommands = cms.untracked.vstring("keep *", "drop *_MEtoEDMConverter_*_*", "drop L1GlobalTriggerObjectMapRecord_hltL1GtObjectMap__HLT")
|
37 |
bendavid |
1.1 |
|
38 |
|
|
# other statements
|
39 |
|
|
|
40 |
|
|
#special global tag for 900GeV startup beamspot conditions and startup (CRAFT-knowledge) alignment scenario
|
41 |
bendavid |
1.15 |
process.GlobalTag.globaltag = 'START38_V12::All'
|
42 |
bendavid |
1.1 |
|
43 |
|
|
process.add_(cms.Service("ObjectService"))
|
44 |
|
|
|
45 |
|
|
process.load("MitProd.BAMBUSequences.BambuFillRECOSIM_cfi")
|
46 |
|
|
|
47 |
bendavid |
1.2 |
process.MitTreeFiller.TreeWriter.fileName = 'XX-MITDATASET-XX'
|
48 |
|
|
|
49 |
bendavid |
1.1 |
process.bambu_step = cms.Path(process.BambuFillRECOSIM)
|
50 |
|
|
|
51 |
|
|
# schedule definition
|
52 |
|
|
process.schedule = cms.Schedule(process.bambu_step)
|