Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:02

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #build the hemispheres from our jets
0004 scoutingRHemisphere = cms.EDFilter("HLTRHemisphere",
0005     acceptNJ = cms.bool(True),
0006     maxEta = cms.double(3.0),
0007     inputTag = cms.InputTag("hltCaloJetIDPassed"),
0008     maxMuonEta = cms.double(2.1),
0009     muonTag = cms.InputTag(""),
0010     minJetPt = cms.double(30.0),
0011     doMuonCorrection = cms.bool(False),
0012     maxNJ = cms.int32(14)
0013 )
0014 
0015 scoutingRazorVariables = cms.EDProducer("RazorVarProducer",
0016     inputTag = cms.InputTag("scoutingRHemisphere"),
0017     inputMetTag = cms.InputTag("hltMetClean"),
0018 )
0019 
0020 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0021 scoutingRazorVarAnalyzer = DQMEDAnalyzer('RazorVarAnalyzer',
0022   modulePath=cms.untracked.string("Razor"),
0023   razorVarCollectionName=cms.untracked.InputTag("scoutingRazorVariables")
0024   )
0025 
0026 
0027 #this file contains the sequence for data scouting using the Razor analysis
0028 scoutingRazorDQMSequence = cms.Sequence(cms.ignore(scoutingRHemisphere)*
0029                                         scoutingRazorVariables*
0030                                         scoutingRazorVarAnalyzer
0031                                         )