CMS 3D CMS Logo

EventShapeVars_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 import copy
3 
4 caloEventShapeVars = cms.EDProducer("EventShapeVarsProducer",
5  # name of input collection used for computation of event-shape variables
6  # (any collection of objects inheriting from reco::Candidate can be used as input)
7  src = cms.InputTag("towerMaker"),
8 
9  # momentum dependence of sphericity and aplanarity variables and of C and D quantities
10  # (r = 2. corresponds to the conventionally used default, but raises issues of infrared safety in QCD calculations;
11  # see https://arxiv.org/pdf/hep-ph/0603175v2.pdf#page=524 for more details)
12  r = cms.double(2.),
13 
14  # number of Fox-Wolfram moments to compute
15  fwmax = cms.uint32(0),
16 )
17 
18 pfEventShapeVars = caloEventShapeVars.clone(
19  src = cms.InputTag("pfNoPileUp")
20 )
21 
22 produceEventShapeVars = cms.Sequence( caloEventShapeVars * pfEventShapeVars )