Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:03

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMOffline.Trigger.topMonitoring_cfi import topMonitoring
0004 
0005 hltSUSYmonitoring = topMonitoring.clone(
0006   FolderName = 'HLT/SUSY/default/',
0007   histoPSet = dict(
0008       lsPSet = dict(
0009             nbins =  2500,
0010             xmin  =    0.,
0011             xmax  =  2500.),
0012 
0013       metPSet = dict(
0014             nbins =   30 ,
0015             xmin  =   0 ,
0016             xmax  =  300),
0017 
0018       ptPSet = dict(
0019             nbins =  60 ,
0020             xmin  =  0 ,
0021             xmax  = 300 ),
0022 
0023       phiPSet = dict(
0024             nbins =  32 ,
0025             xmin  =  -3.2 ,
0026             xmax  =  3.2 ),
0027      
0028       etaPSet = dict(
0029             nbins =  24  ,
0030             xmin  =  -2.4 ,
0031             xmax  =  2.4 ),
0032 
0033       htPSet = dict(
0034             nbins =  60 ,
0035             xmin  =   0 ,
0036             xmax  =  600),
0037 
0038       # Marina
0039       csvPSet = dict(
0040             nbins = 50 ,
0041             xmin  =  0.0 ,
0042             xmax  = 1.0 ),
0043 
0044       #BTV
0045         DRPSet = dict(
0046              nbins = 60 ,
0047              xmin  = 0.0 ,
0048              xmax  =  6.0),
0049 
0050 
0051         invMassPSet = dict(
0052               nbins = 40 ,
0053               xmin  =  0.0 ,
0054               xmax  = 80.0 ),
0055 
0056         MHTPSet = dict(
0057               nbins =  80,
0058               xmin  =   60,
0059               xmax  =   300),
0060    
0061     #MET and HT binning
0062     metBinning = [0,20,40,60,80,100,125,150,175,200],
0063     HTBinning  = [0,20,40,60,80,100,125,150,175,200,300,400,500,700],
0064     #Eta binning
0065     eleEtaBinning = [-2.4,-2.1,-1.5,-0.9,-0.3,0.,0.3,0.9,1.5,2.1,2.4],
0066     jetEtaBinning = [-2.4,-2.1,-1.5,-0.9,-0.3,0.,0.3,0.9,1.5,2.1,2.4],
0067     muEtaBinning  = [-2.4,-2.1,-1.5,-0.9,-0.3,0.,0.3,0.9,1.5,2.1,2.4],
0068     #pt binning
0069     elePtBinning = [0,5,10,20,30,40,50,70,100,200,400],
0070     jetPtBinning = [0,5,10,20,30,40,50,70,100,200,400],
0071     muPtBinning  = [0,5,10,20,30,40,50,70,100,200,400],
0072     #Eta binning 2D
0073     eleEtaBinning2D = [-2.5,-1.5,-0.6,0.,0.6,1.5,2.5],
0074     jetEtaBinning2D = [-2.5,-1.5,-0.6,0.,0.6,1.5,2.5],
0075     muEtaBinning2D  = [-2.5,-1.5,-0.6,0.,0.6,1.5,2.5],
0076     #pt binning 2D
0077     elePtBinning2D = [0,20,30,50,100,200,400],
0078     jetPtBinning2D = [0,20,30,50,100,200,400],
0079     muPtBinning2D  = [0,20,30,50,100,200,400],
0080     #HT and phi binning 2D
0081     HTBinning2D  = [0,20,40,70,100,150,200,400,700],
0082     phiBinning2D = [-3.1416,-1.8849,-0.6283,0.6283,1.8849,3.1416],
0083   ),
0084   #Suvankar
0085   applyLeptonPVcuts = False,
0086   leptonPVcuts = dict(
0087         dxy =   9999.,
0088         dz  =   9999.),
0089   met       = "pfMet", # pfMet
0090   jets      = "ak4PFJetsCHS", # ak4PFJets, ak4PFJetsCHS, pfJetsEI
0091   electrons = "gedGsfElectrons", # while pfIsolatedElectronsEI are reco::PFCandidate !
0092   muons     = "muons", # while pfIsolatedMuonsEI are reco::PFCandidate !
0093 
0094 
0095   #Suvankar
0096   vertices  = "offlinePrimaryVertices",
0097 
0098   # Marina
0099   btagAlgos = ["pfCombinedSecondaryVertexV2BJetTags"],
0100   workingpoint = 0.8484, # Medium
0101 
0102   HTdefinition = 'pt>30 & abs(eta)<2.5',
0103   leptJetDeltaRmin = 0.4,
0104 
0105   numGenericTriggerEventPSet = dict(
0106     andOr         =  False,
0107     andOrHlt      = True,# True:=OR; False:=AND
0108     hltInputTag   = "TriggerResults::HLT",
0109     errorReplyHlt =  False,
0110     verbosityLevel = 0),
0111 
0112   denGenericTriggerEventPSet = dict(
0113     andOr         =  False,
0114     andOrHlt      = True,# True:=OR; False:=AND
0115     hltInputTag   =  "TriggerResults::HLT",
0116     errorReplyHlt =  False,
0117     dcsInputTag   =  "scalersRawToDigi",
0118     dcsRecordInputTag = "onlineMetaDataDigis",
0119     dcsPartitions = [ 24, 25, 26, 27, 28, 29], # 24-27: strip, 28-29: pixel, we should add all other detectors !
0120     andOrDcs      = False,
0121     errorReplyDcs = True,
0122     verbosityLevel = 0)
0123 )