Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-23 03:28:20

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def SuperclusteringSampleDumper(*args, **kwargs):
0004   mod = cms.EDAnalyzer('SuperclusteringSampleDumper',
0005     tracksters = cms.InputTag('ticlTrackstersCLUE3DHigh'),
0006     recoToSimAssociatorCP = cms.InputTag('tracksterSimTracksterAssociationLinkingbyCLUE3D', 'recoToSim'),
0007     dnnInputsVersion = cms.string('v2'),
0008     deltaEtaWindow = cms.double(0.2),
0009     deltaPhiWindow = cms.double(0.7),
0010     seedPtThreshold = cms.double(3),
0011     candidateEnergyThreshold = cms.double(1.5),
0012     explVarRatioCut_energyBoundary = cms.double(50),
0013     explVarRatioMinimum_lowEnergy = cms.double(0.85),
0014     explVarRatioMinimum_highEnergy = cms.double(0.9),
0015     mightGet = cms.optional.untracked.vstring
0016   )
0017   for a in args:
0018     mod.update_(a)
0019   mod.update_(kwargs)
0020   return mod