1 |
bendavid |
1.1 |
# $Id:#
|
2 |
|
|
|
3 |
|
|
import FWCore.ParameterSet.Config as cms
|
4 |
|
|
|
5 |
paus |
1.25 |
process = cms.Process('FILEFI')
|
6 |
bendavid |
1.1 |
|
7 |
|
|
# import of standard configurations
|
8 |
|
|
process.load('Configuration/StandardSequences/Services_cff')
|
9 |
|
|
process.load('FWCore/MessageService/MessageLogger_cfi')
|
10 |
bendavid |
1.16 |
process.load('Configuration.StandardSequences.GeometryDB_cff')
|
11 |
bendavid |
1.1 |
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 |
paus |
1.27 |
version = cms.untracked.string('Mit_028'),
|
17 |
paus |
1.25 |
annotation = cms.untracked.string('RECOSIMStartup'),
|
18 |
|
|
name = cms.untracked.string('BambuProduction')
|
19 |
bendavid |
1.1 |
)
|
20 |
|
|
|
21 |
|
|
process.maxEvents = cms.untracked.PSet(
|
22 |
paus |
1.25 |
input = cms.untracked.int32(-1)
|
23 |
bendavid |
1.1 |
)
|
24 |
|
|
process.options = cms.untracked.PSet(
|
25 |
paus |
1.25 |
Rethrow = cms.untracked.vstring('ProductNotFound'),
|
26 |
|
|
fileMode = cms.untracked.string('NOMERGE'),
|
27 |
bendavid |
1.1 |
)
|
28 |
|
|
|
29 |
|
|
# input source
|
30 |
|
|
process.source = cms.Source("PoolSource",
|
31 |
bendavid |
1.24 |
fileNames = cms.untracked.vstring('/store/relval/CMSSW_4_4_0/RelValProdTTbar/AODSIM/START44_V5-v2/0046/74C825F5-ACE6-E011-8C0D-00261894391F.root'),
|
32 |
bendavid |
1.1 |
)
|
33 |
paus |
1.25 |
process.source.inputCommands = cms.untracked.vstring("keep *",
|
34 |
|
|
"drop *_MEtoEDMConverter_*_*",
|
35 |
|
|
"drop L1GlobalTriggerObjectMapRecord_hltL1GtObjectMap__HLT")
|
36 |
bendavid |
1.1 |
|
37 |
|
|
# other statements
|
38 |
|
|
#special global tag for 900GeV startup beamspot conditions and startup (CRAFT-knowledge) alignment scenario
|
39 |
paus |
1.26 |
process.GlobalTag.globaltag = 'START52_V9::All'
|
40 |
bendavid |
1.1 |
|
41 |
|
|
process.add_(cms.Service("ObjectService"))
|
42 |
|
|
|
43 |
|
|
process.load("MitProd.BAMBUSequences.BambuFillRECOSIM_cfi")
|
44 |
|
|
|
45 |
bendavid |
1.2 |
process.MitTreeFiller.TreeWriter.fileName = 'XX-MITDATASET-XX'
|
46 |
|
|
|
47 |
bendavid |
1.1 |
process.bambu_step = cms.Path(process.BambuFillRECOSIM)
|
48 |
|
|
|
49 |
|
|
# schedule definition
|
50 |
|
|
process.schedule = cms.Schedule(process.bambu_step)
|