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
LHECOMWeightProducer Class Reference
Inheritance diagram for LHECOMWeightProducer:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 LHECOMWeightProducer (const edm::ParameterSet &)
 
 ~LHECOMWeightProducer ()
 
- 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

virtual void beginJob () override
 
virtual void beginRun (edm::Run const &run, const edm::EventSetup &es) override
 
virtual void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

std::string _label
 
double _newECMS
 
double _origECMS
 
int _pdfmember
 
int _pdfset
 
edm::InputTag lheTag_
 

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

Definition at line 23 of file LHECOMWeightProducer.cc.

Constructor & Destructor Documentation

LHECOMWeightProducer::LHECOMWeightProducer ( const edm::ParameterSet pset)
explicit

Definition at line 55 of file LHECOMWeightProducer.cc.

References _label, and _newECMS.

55  :
56  lheTag_(pset.getParameter<edm::InputTag> ("lheSrc")),
57  _newECMS(pset.getParameter< double > ("NewECMS"))
58 {
59  std::stringstream labelStr;
60  labelStr << "com" << "To" << _newECMS;
61  _label = labelStr.str();
62  produces<GenEventInfoProduct>(_label);
63 }
T getParameter(std::string const &) const
LHECOMWeightProducer::~LHECOMWeightProducer ( )

Definition at line 66 of file LHECOMWeightProducer.cc.

66 {}

Member Function Documentation

void LHECOMWeightProducer::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDProducer.

Definition at line 85 of file LHECOMWeightProducer.cc.

85  {
86  //LHAPDF::initPDFSet(1,pdfSetName_);
87 }
void LHECOMWeightProducer::beginRun ( edm::Run const &  run,
const edm::EventSetup es 
)
overrideprivatevirtual

Reimplemented from edm::EDProducer.

Definition at line 69 of file LHECOMWeightProducer.cc.

References _newECMS, _origECMS, _pdfmember, _pdfset, edm::hlt::Exception, edm::Run::getByLabel(), LHAPDF::initPDFSet(), and lheTag_.

69  {
70  using namespace edm;
72  run.getByLabel(lheTag_, lheRun);
73  //assumes the same pdf is used for both beams
74  _pdfset = lheRun->heprup().PDFSUP.first;
75  _pdfmember = lheRun->heprup().PDFGUP.first;
76  _origECMS = lheRun->heprup().EBMUP.first + lheRun->heprup().EBMUP.second;
77  edm::LogInfo("LHECOMWeightProducer") << "PDFSET: " << _pdfset << "; member: " << _pdfmember << "; COM energy: " << _origECMS;
78  if ( _newECMS > _origECMS )
79  throw cms::Exception("LHECOMWeightProducer") << "You cannot reweight COM energy to a higher than original energy ";
81 }
void initPDFSet(int nset, const std::string &filename, int member=0)
void LHECOMWeightProducer::produce ( edm::Event iEvent,
const edm::EventSetup  
)
overrideprivatevirtual

Implements edm::EDProducer.

Definition at line 90 of file LHECOMWeightProducer.cc.

References _label, _newECMS, _origECMS, _pdfmember, _pdfset, gather_cfg::cout, edm::Event::getByLabel(), info, edm::EventBase::isRealData(), lheTag_, LogTrace, edm::Event::put(), LHAPDF::usePDFMember(), histoStyle::weight, create_public_pileup_plots::weights, and LHAPDF::xfx().

90  {
91 
92  using namespace std;
93  bool verbose = false;
94 
95  if (iEvent.isRealData()) return;
96 
98  iEvent.getByLabel(lheTag_, lheevent);
99 
100  float Q = lheevent->hepeup().SCALUP;
101 
102  int id1 = lheevent->hepeup().IDUP[0];
103  double x1 = fabs(lheevent->hepeup().PUP[0][2]/(_origECMS/2));
104  double x1prime = fabs(lheevent->hepeup().PUP[0][2]/(_newECMS/2));
105 
106  int id2 = lheevent->hepeup().IDUP[1];
107  double x2 = fabs(lheevent->hepeup().PUP[1][2]/(_origECMS/2));
108  double x2prime = fabs(lheevent->hepeup().PUP[1][2]/(_newECMS/2));
109 
110  LogTrace("LHECOMWeightProducer") << "*******LHECOMWeightProducer*******\n" <<
111  " Q : " << Q << "\n" <<
112  " id1: " << id1 << "\n" <<
113  " x1 : " << x1 << "\n" <<
114  " x1': " << x1prime << "\n" <<
115  " id2: " << id2 << "\n" <<
116  " x2 : " << x2 << "\n" <<
117  " x2': " << x2prime ;
118  //gluon is 0 in the LHAPDF numbering
119  if (id1 == 21)
120  id1 = 0;
121  if (id2 == 21)
122  id2 = 0;
123 
124  // Put PDF weights in the event
125  if (verbose)
126  cout << " Set : " << _pdfset << " member : " << _pdfmember << endl;
127 
129  double oldpdf1 = LHAPDF::xfx(1, x1, Q, id1)/x1;
130  double oldpdf2 = LHAPDF::xfx(1, x2, Q, id2)/x2;
131  double newpdf1 = LHAPDF::xfx(1, x1prime, Q, id1)/x1prime;
132  double newpdf2 = LHAPDF::xfx(1, x2prime, Q, id2)/x2prime;
133  LogTrace("LHECOMWeightProducer") <<
134  " xfx1 : " << oldpdf1 << "\n" <<
135  " xfx2 : " << oldpdf2 << "\n" <<
136  " xfx1': " << newpdf1 << "\n" <<
137  " xfx2': " << newpdf2 << "\n" <<
138  " weight:" << (newpdf1/oldpdf1)*(newpdf2/oldpdf2);
139  double weight = (newpdf1/oldpdf1)*(newpdf2/oldpdf2);
140  std::vector<double> weights;
141  weights.push_back(weight);
142  std::auto_ptr<GenEventInfoProduct> info(new GenEventInfoProduct());
143  info->setWeights(weights);
144  iEvent.put(info, _label);
145 }
bool isRealData() const
Definition: EventBase.h:60
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:94
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
#define LogTrace(id)
double xfx(int nset, double x, double Q, int fl)
tuple cout
Definition: gather_cfg.py:121
int weight
Definition: histoStyle.py:50
void usePDFMember(int nset, int member)

Member Data Documentation

std::string LHECOMWeightProducer::_label
private
double LHECOMWeightProducer::_newECMS
private

Definition at line 37 of file LHECOMWeightProducer.cc.

Referenced by beginRun(), LHECOMWeightProducer(), and produce().

double LHECOMWeightProducer::_origECMS
private

Definition at line 36 of file LHECOMWeightProducer.cc.

Referenced by beginRun(), and produce().

int LHECOMWeightProducer::_pdfmember
private

Definition at line 35 of file LHECOMWeightProducer.cc.

Referenced by beginRun(), and produce().

int LHECOMWeightProducer::_pdfset
private

Definition at line 34 of file LHECOMWeightProducer.cc.

Referenced by beginRun(), and produce().

edm::InputTag LHECOMWeightProducer::lheTag_
private

Definition at line 33 of file LHECOMWeightProducer.cc.

Referenced by beginRun(), and produce().