-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemoanalyzer_cfg.py
50 lines (46 loc) · 2.9 KB
/
demoanalyzer_cfg.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import FWCore.ParameterSet.Config as cms
from RecoMuon.TrackingTools.MuonServiceProxy_cff import *
import PhysicsTools.PythonAnalysis.LumiList as LumiList
import FWCore.ParameterSet.Types as CfgTypes
#import FWCore.PythonUtilities.LumiList as LumiList
process = cms.Process("Validation")
# intialize MessageLogger and output report
process.load("FWCore.MessageLogger.MessageLogger_cfi")
process.MessageLogger.cerr.threshold = 'INFO'
process.MessageLogger.categories.append('Validation')
process.MessageLogger.cerr.INFO = cms.untracked.PSet(limit = cms.untracked.int32(-1))
process.options = cms.untracked.PSet( wantSummary = cms.untracked.bool(True) )
# **********************************************************************
# set the maximum number of events to be processed *
# this number (argument of int32) is to be modified by the user *
# according to need and wish *
# default is preset to 10000 events *
# **********************************************************************
process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(20000000) )
# ****************************************************************************
# define the input data set here by inserting the appropriate .txt file list *
# ****************************************************************************
import FWCore.Utilities.FileUtils as FileUtils
#
# ****************************************************************
# exactly one of the following 'files2010data =' statements *
# should be uncommented. *
# For MUO-10-004, the default is the Mu data set. *
# To run over all sets, replace '0000' by '0001' etc. *
# consecutively (make sure you save the output before rerunning) *
# and add up the histograms using root tools. *
# ****************************************************************
# *** Commissioning data set ***
files2010data = FileUtils.loadListFromFile ('/home/cms-opendata/CMSSW_4_2_8/src/Validation/Commissioning_dimuon_2010/datasets/CMS_Run2010B_Commissioning_AOD_Apr21ReReco-v1_0000_file_index.txt')
process.source = cms.Source("PoolSource",fileNames = cms.untracked.vstring(*files2010data))
# *************************************************
# number of events to be skipped (0 by default) *
# *************************************************
process.source.skipEvents = cms.untracked.uint32(0)
process.demo = cms.EDAnalyzer('Commissioning_dimuon_2010')
# ***********************************************************
# output file name *
# change this according to input file, or according to wish *
# ***********************************************************
process.TFileService = cms.Service("TFileService",fileName = cms.string('Commissioning00val.root'))
process.p = cms.Path(process.demo)