ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/Processing/filefi/014/debug.py
Revision: 1.3
Committed: Sat Oct 23 12:43:55 2010 UTC (14 years, 6 months ago) by ceballos
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_024b, Mit_025pre1, Mit_024a, Mit_024, Mit_022a, Mit_022, Mit_020d, TMit_020d, Mit_020c, Mit_021, Mit_021pre2, Mit_021pre1, Mit_020b, Mit_020a, Mit_020, Mit_020pre1, Mit_018, Mit_017, Mit_017pre3, Mit_017pre2, Mit_017pre1, Mit_016
Changes since 1.2: +1 -1 lines
Log Message:
some updates

File Contents

# User Rev Content
1 paus 1.2 # $Id: debug.py,v 1.1 2010/06/18 21:41:15 paus Exp $
2 paus 1.1
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 ceballos 1.3 version = cms.untracked.string('Mit_014a'),
17 paus 1.1 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 paus 1.2 process.GlobalTag.globaltag = 'START38_V12::All'
38 paus 1.1
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)