ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/python/MitTreeFiller_CRAFT.py
Revision: 1.4
Committed: Tue Mar 24 15:49:13 2009 UTC (16 years, 1 month ago) by bendavid
Content type: text/x-python
Branch: MAIN
Changes since 1.3: +2 -44 lines
Log Message:
Updated CRAFT configs for 008 and CRAFT 225 re-reco

File Contents

# User Rev Content
1 bendavid 1.4 # $Id: MitTreeFiller_CRAFT.py,v 1.3 2009/03/18 14:58:18 loizides Exp $
2 bendavid 1.1 #---------------------------------------------------------------------------------------------------
3 loizides 1.3 # This template config file is intended to be a reference for the "HEAD" bambu tree version.
4 bendavid 1.1 # This config file will be used by the mitprod account to do production on CRAB. It must
5     # be ensured that this config file is always working with the production CMSSW release
6     #---------------------------------------------------------------------------------------------------
7     # List of paramters to be properly replaced
8     #
9     # - XX-MITDATASET-XX - MIT type dataset name (ex. csa08-1ipb-jpsi)
10     #
11     #---------------------------------------------------------------------------------------------------
12    
13     import FWCore.ParameterSet.Config as cms
14     process = cms.Process("FILLER")
15    
16     process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(99999999) )
17     process.source = cms.Source("PoolSource",
18     fileNames = cms.untracked.vstring(
19 bendavid 1.4 'file:/server/02a/bendavid/RECO/CRAFT_225_FromSuperpointing/6E1D2117-280C-DE11-B00A-001731AF677D.root'
20 bendavid 1.1 ),
21     secondaryFileNames = cms.untracked.vstring()
22     )
23    
24     #Load MitTreeFiller
25     process.TreeService = cms.Service("TreeService",
26 bendavid 1.2 fileNames = cms.untracked.vstring('mit-craft')
27 bendavid 1.1 )
28     process.add_(cms.Service("ObjectService"))
29     process.load("MitProd.TreeFiller.MitTreeFiller_CRAFT_cfi")
30    
31     process.load("FWCore.MessageLogger.MessageLogger_cfi")
32    
33    
34     process.p1 = cms.Path(
35     process.MitTreeFiller
36     )