ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/Processing/filefi/014/debug.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: BAMBUProd_RECODEBUG.py,v 1.18 2010/03/25 18:51:41 bendavid Exp $
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('RECODEBUG'),
18     name = cms.untracked.string('BambuProduction')
19     )
20    
21     process.maxEvents = cms.untracked.PSet(
22     input = cms.untracked.int32(-1)
23     )
24    
25     process.options = cms.untracked.PSet(
26     Rethrow = cms.untracked.vstring('ProductNotFound'),
27     fileMode = cms.untracked.string('NOMERGE')
28     )
29    
30     # input source
31     process.source = cms.Source("PoolSource",
32     fileNames = cms.untracked.vstring('file:/build/bendavid/RECODEBUG/Zee7TeVTrackingParticles/D87A5BD6-40A0-DE11-A3A9-00E08178C0B1.root')
33     )
34     process.source.inputCommands = cms.untracked.vstring("keep *", "drop *_MEtoEDMConverter_*_*", "drop L1GlobalTriggerObjectMapRecord_hltL1GtObjectMap__HLT")
35    
36     # other statements
37     process.GlobalTag.globaltag = 'START36_V6::All'
38    
39     process.add_(cms.Service("ObjectService"))
40    
41     process.load("MitProd.BAMBUSequences.BambuFillRECODEBUG_cfi")
42    
43     process.MitTreeFiller.TreeWriter.fileName = 'XX-MITDATASET-XX'
44     process.MitTreeFiller.TreeWriter.maxSize = cms.untracked.uint32(1790)
45    
46     #hack pixelLess tracking back (present in special startup MC samples)
47     #process.MitTreeFiller.PixelLessTracks.active = True
48    
49     process.bambu_step = cms.Path(process.BambuFillRECODEBUG)
50    
51     # schedule definition
52     process.schedule = cms.Schedule(process.bambu_step)