test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 http://cepa.fnal.gov/psm/simulation/mcgen/lund/pythia_manual/pythia6.3/pythia6301/node213.html for more details)
12  r = cms.double(2.)
13 )
14 
15 pfEventShapeVars = copy.deepcopy(caloEventShapeVars)
16 pfEventShapeVars.src = cms.InputTag("pfNoPileUp")
17 
18 produceEventShapeVars = cms.Sequence( caloEventShapeVars * pfEventShapeVars )