CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
EventShapeVarsProducer Class Reference

#include <EventShapeVarsProducer.h>

Inheritance diagram for EventShapeVarsProducer:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 EventShapeVarsProducer (const edm::ParameterSet &)
 
 ~EventShapeVarsProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndex indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

void beginJob ()
 
void endJob ()
 
void produce (edm::Event &, const edm::EventSetup &)
 

Private Attributes

double r_
 
edm::InputTag src_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Produce set of event shape variables. The values of different event shape variables are stored as doubles in the event. They can be retrieved via:

edm::Handle<double> specificEventShapeVar; evt.getByLabel("moduleName::instanceName", specificEventShapeVar);

where moduleName corresponds to "eventShapeVarsProducer" per default and instance name specifies an individual event shape variable which you wish to retrieve from the event:

See http://cepa.fnal.gov/psm/simulation/mcgen/lund/pythia_manual/pythia6.3/pythia6301/node213.html ( http://cepa.fnal.gov/psm/simulation/mcgen/lund/pythia_manual/pythia6.3/pythia6301/node214.html ) for an explanation of sphericity, aplanarity and the quantities C and D (thrust and oblateness).

Author
Christian Veelken, UC Davis
Version
Revision:
1.3
Id:
EventShapeVarsProducer.h,v 1.3 2010/02/11 00:12:54 wmtan Exp

Definition at line 43 of file EventShapeVarsProducer.h.

Constructor & Destructor Documentation

EventShapeVarsProducer::EventShapeVarsProducer ( const edm::ParameterSet cfg)
explicit

Definition at line 11 of file EventShapeVarsProducer.cc.

References edm::ParameterSet::exists(), edm::ParameterSet::getParameter(), r_, and src_.

12 {
13  src_ = cfg.getParameter<edm::InputTag>("src");
14  r_ = cfg.exists("r") ? cfg.getParameter<double>("r") : 2.;
15 
16  produces<double>("thrust");
17  //produces<double>("oblateness");
18  produces<double>("isotropy");
19  produces<double>("circularity");
20  produces<double>("sphericity");
21  produces<double>("aplanarity");
22  produces<double>("C");
23  produces<double>("D");
24 
25 }
T getParameter(std::string const &) const
bool exists(std::string const &parameterName) const
checks if a parameter exists
EventShapeVarsProducer::~EventShapeVarsProducer ( )
inline

Definition at line 48 of file EventShapeVarsProducer.h.

48 {}

Member Function Documentation

void EventShapeVarsProducer::beginJob ( void  )
inlineprivatevirtual

Reimplemented from edm::EDProducer.

Definition at line 55 of file EventShapeVarsProducer.h.

55 {}
void EventShapeVarsProducer::endJob ( void  )
inlineprivatevirtual

Reimplemented from edm::EDProducer.

Definition at line 57 of file EventShapeVarsProducer.h.

57 {}
void EventShapeVarsProducer::produce ( edm::Event evt,
const edm::EventSetup  
)
privatevirtual

Implements edm::EDProducer.

Definition at line 33 of file EventShapeVarsProducer.cc.

References edm::Event::getByLabel(), put(), r_, and src_.

34 {
35  //std::cout << "<EventShapeVarsProducer::produce>:" << std::endl;
36 
38  evt.getByLabel(src_, objects);
39 
40  Thrust thrustAlgo(objects->begin(), objects->end());
41  put(evt, thrustAlgo.thrust(), "thrust");
42  //put(evt, thrustAlgo.oblateness(), "oblateness");
43 
44  EventShapeVariables eventShapeVarsAlgo(*objects);
45  put(evt, eventShapeVarsAlgo.isotropy(), "isotropy");
46  put(evt, eventShapeVarsAlgo.circularity(), "circularity");
47  put(evt, eventShapeVarsAlgo.sphericity(r_), "sphericity");
48  put(evt, eventShapeVarsAlgo.aplanarity(r_), "aplanarity");
49  put(evt, eventShapeVarsAlgo.C(r_), "C");
50  put(evt, eventShapeVarsAlgo.D(r_), "D");
51 }
Class for the calculation of several event shape variables.
void put(edm::Event &evt, double value, const char *instanceName)
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
Definition: Thrust.h:40

Member Data Documentation

double EventShapeVarsProducer::r_
private

Definition at line 53 of file EventShapeVarsProducer.h.

Referenced by EventShapeVarsProducer(), and produce().

edm::InputTag EventShapeVarsProducer::src_
private

Definition at line 52 of file EventShapeVarsProducer.h.

Referenced by EventShapeVarsProducer(), and produce().