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::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 &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

Private Member Functions

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

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
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

Definition at line 23 of file LHECOMWeightProducer.cc.

Constructor & Destructor Documentation

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

Definition at line 56 of file LHECOMWeightProducer.cc.

References _label, and _newECMS.

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

Definition at line 67 of file LHECOMWeightProducer.cc.

67 {}

Member Function Documentation

void LHECOMWeightProducer::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 86 of file LHECOMWeightProducer.cc.

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

Reimplemented from edm::EDProducer.

Definition at line 70 of file LHECOMWeightProducer.cc.

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

70  {
71  using namespace edm;
73  run.getByLabel(lheTag_, lheRun);
74  //assumes the same pdf is used for both beams
75  _pdfset = lheRun->heprup().PDFSUP.first;
76  _pdfmember = lheRun->heprup().PDFGUP.first;
77  _origECMS = lheRun->heprup().EBMUP.first + lheRun->heprup().EBMUP.second;
78  edm::LogInfo("LHECOMWeightProducer") << "PDFSET: " << _pdfset << "; member: " << _pdfmember << "; COM energy: " << _origECMS;
79  if ( _newECMS > _origECMS )
80  throw cms::Exception("LHECOMWeightProducer") << "You cannot reweight COM energy to a higher than original energy ";
82 }
bool getByLabel(std::string const &label, Handle< PROD > &result) const
Definition: Run.h:177
void initPDFSet(int nset, const std::string &filename, int member=0)
void LHECOMWeightProducer::endJob ( void  )
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 91 of file LHECOMWeightProducer.cc.

91 {}
void LHECOMWeightProducer::produce ( edm::Event iEvent,
const edm::EventSetup  
)
privatevirtual

Implements edm::EDProducer.

Definition at line 94 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(), CommonMethods::weight(), create_public_pileup_plots::weights, and LHAPDF::xfx().

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

Member Data Documentation

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

Definition at line 38 of file LHECOMWeightProducer.cc.

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

double LHECOMWeightProducer::_origECMS
private

Definition at line 37 of file LHECOMWeightProducer.cc.

Referenced by beginRun(), and produce().

int LHECOMWeightProducer::_pdfmember
private

Definition at line 36 of file LHECOMWeightProducer.cc.

Referenced by beginRun(), and produce().

int LHECOMWeightProducer::_pdfset
private

Definition at line 35 of file LHECOMWeightProducer.cc.

Referenced by beginRun(), and produce().

edm::InputTag LHECOMWeightProducer::lheTag_
private

Definition at line 34 of file LHECOMWeightProducer.cc.

Referenced by beginRun(), and produce().