-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparameters.py
More file actions
26 lines (18 loc) · 878 Bytes
/
parameters.py
File metadata and controls
26 lines (18 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import FWCore.ParameterSet.Config as cms
process = cms.Process("FWLitePlots")
process.MuonAnalyzer = cms.PSet(
## common input for wrapped analyzers
fileNames = cms.vstring(
# Multiple file should be comma separated
# This is the format for using a remote file
'root://cmseos.fnal.gov//store/user/cmsdas/2020/pre_exercises/Set4/Input/DoubleMuon/slimMiniAOD_data_MuEle_1.root',
# The format for using a local file can be found in the commented line below
# 'file:slimMiniAOD_data_MuEle_1.root'
),
outputFile = cms.string('myZPeakCRAB_fwlite.root'),## mandatory
outputEvery = cms.uint32(1000),
maxEvents = cms.int32(-1), ## optional
##reportAfter = cms.uint32(100), ## optional
## input specific for this analyzer
muons = cms.InputTag('slimmedMuons')
)