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

Public Member Functions

 PdfWeightProducer (const edm::ParameterSet &)
 
 ~PdfWeightProducer ()
 
- 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 endJob ()
 
virtual void produce (edm::Event &, const edm::EventSetup &)
 

Private Attributes

std::string fixPOWHEG_
 
edm::InputTag genTag_
 
edm::InputTag pdfInfoTag_
 
std::vector< std::string > pdfSetNames_
 
std::vector< std::string > pdfShortNames_
 

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)
 
- 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 20 of file PdfWeightProducer.cc.

Constructor & Destructor Documentation

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

Definition at line 51 of file PdfWeightProducer.cc.

References dot(), fixPOWHEG_, gen::k, pdfSetNames_, and pdfShortNames_.

51  :
52  fixPOWHEG_(pset.getUntrackedParameter<std::string> ("FixPOWHEG", "")),
53  genTag_(pset.getUntrackedParameter<edm::InputTag> ("GenTag", edm::InputTag("genParticles"))),
54  pdfInfoTag_(pset.getUntrackedParameter<edm::InputTag> ("PdfInfoTag", edm::InputTag("generator"))),
55  pdfSetNames_(pset.getUntrackedParameter<std::vector<std::string> > ("PdfSetNames"))
56 {
57  if (fixPOWHEG_ != "") pdfSetNames_.insert(pdfSetNames_.begin(),fixPOWHEG_);
58 
59  if (pdfSetNames_.size()>3) {
60  edm::LogWarning("") << pdfSetNames_.size() << " PDF sets requested on input. Using only the first 3 sets and ignoring the rest!!";
61  pdfSetNames_.erase(pdfSetNames_.begin()+3,pdfSetNames_.end());
62  }
63 
64  for (unsigned int k=0; k<pdfSetNames_.size(); k++) {
65  size_t dot = pdfSetNames_[k].find_first_of('.');
66  size_t underscore = pdfSetNames_[k].find_first_of('_');
67  if (underscore<dot) {
68  pdfShortNames_.push_back(pdfSetNames_[k].substr(0,underscore));
69  } else {
70  pdfShortNames_.push_back(pdfSetNames_[k].substr(0,dot));
71  }
72  produces<std::vector<double> >(pdfShortNames_[k].data());
73  }
74 }
T getUntrackedParameter(std::string const &, T const &) const
edm::InputTag genTag_
std::vector< std::string > pdfSetNames_
int k[5][pyjets_maxn]
edm::InputTag pdfInfoTag_
std::vector< std::string > pdfShortNames_
T dot(const Basic3DVector &v) const
Scalar product, or &quot;dot&quot; product, with a vector of same type.
PdfWeightProducer::~PdfWeightProducer ( )

Definition at line 77 of file PdfWeightProducer.cc.

77 {}

Member Function Documentation

void PdfWeightProducer::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 80 of file PdfWeightProducer.cc.

References LHAPDF::initPDFSet(), gen::k, and pdfSetNames_.

80  {
81  for (unsigned int k=1; k<=pdfSetNames_.size(); k++) {
83  }
84 }
void initPDFSet(int nset, const std::string &filename, int member=0)
std::vector< std::string > pdfSetNames_
int k[5][pyjets_maxn]
void PdfWeightProducer::endJob ( void  )
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 87 of file PdfWeightProducer.cc.

87 {}
void PdfWeightProducer::produce ( edm::Event iEvent,
const edm::EventSetup  
)
privatevirtual

Implements edm::EDProducer.

Definition at line 90 of file PdfWeightProducer.cc.

References abs, edm::InputTag::encode(), fixPOWHEG_, genParticleCandidates2GenParticles_cfi::genParticles, genTag_, edm::Event::getByLabel(), i, edm::HandleBase::id(), edm::EventBase::isRealData(), gen::k, reco::LeafCandidate::mass(), LHAPDF::numberPDF(), pdfInfoTag_, pdfSetNames_, pdfShortNames_, reco::LeafCandidate::pdgId(), edm::Event::put(), mathSSE::sqrt(), reco::LeafCandidate::status(), ntuplemaker::status, LHAPDF::usePDFMember(), and LHAPDF::xfx().

Referenced by python.JSONExport.JsonExport::export(), and python.HTMLExport.HTMLExport::export().

90  {
91 
92  if (iEvent.isRealData()) return;
93 
95  if (!iEvent.getByLabel(pdfInfoTag_, pdfstuff)) {
96  edm::LogError("PDFWeightProducer") << ">>> PdfInfo not found: " << pdfInfoTag_.encode() << " !!!";
97  return;
98  }
99 
100  float Q = pdfstuff->pdf()->scalePDF;
101 
102  int id1 = pdfstuff->pdf()->id.first;
103  double x1 = pdfstuff->pdf()->x.first;
104  double pdf1 = pdfstuff->pdf()->xPDF.first;
105 
106  int id2 = pdfstuff->pdf()->id.second;
107  double x2 = pdfstuff->pdf()->x.second;
108  double pdf2 = pdfstuff->pdf()->xPDF.second;
109 
110  // Ad-hoc fix for POWHEG
111  if (fixPOWHEG_!="") {
113  if (!iEvent.getByLabel(genTag_, genParticles)) {
114  edm::LogError("PDFWeightProducer") << ">>> genParticles not found: " << genTag_.encode() << " !!!";
115  return;
116  }
117  unsigned int gensize = genParticles->size();
118  double mboson = 0.;
119  for(unsigned int i = 0; i<gensize; ++i) {
120  const reco::GenParticle& part = (*genParticles)[i];
121  int status = part.status();
122  if (status!=3) continue;
123  int id = part.pdgId();
124  if (id!=23 && abs(id)!=24) continue;
125  mboson = part.mass();
126  break;
127  }
128  Q = sqrt(mboson*mboson+Q*Q);
130  pdf1 = LHAPDF::xfx(1, x1, Q, id1)/x1;
131  pdf2 = LHAPDF::xfx(1, x2, Q, id2)/x2;
132  }
133 
134  // Put PDF weights in the event
135  for (unsigned int k=1; k<=pdfSetNames_.size(); ++k) {
136  std::auto_ptr<std::vector<double> > weights (new std::vector<double>);
137  unsigned int nweights = 1;
138  if (LHAPDF::numberPDF(k)>1) nweights += LHAPDF::numberPDF(k);
139  weights->reserve(nweights);
140 
141  for (unsigned int i=0; i<nweights; ++i) {
143  double newpdf1 = LHAPDF::xfx(k, x1, Q, id1)/x1;
144  double newpdf2 = LHAPDF::xfx(k, x2, Q, id2)/x2;
145  weights->push_back(newpdf1/pdf1*newpdf2/pdf2);
146  }
147  iEvent.put(weights,pdfShortNames_[k-1]);
148  }
149 }
int i
Definition: DBlmapReader.cc:9
virtual int pdgId() const
PDG identifier.
ProductID id() const
Definition: HandleBase.cc:15
virtual int status() const
status word
#define abs(x)
Definition: mlp_lapack.h:159
edm::InputTag genTag_
bool isRealData() const
Definition: EventBase.h:60
std::string encode() const
Definition: InputTag.cc:72
std::vector< std::string > pdfSetNames_
virtual double mass() const
mass
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:84
T sqrt(T t)
Definition: SSEVec.h:28
int numberPDF(int nset)
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:355
int k[5][pyjets_maxn]
edm::InputTag pdfInfoTag_
part
Definition: HCALResponse.h:21
std::vector< std::string > pdfShortNames_
double xfx(int nset, double x, double Q, int fl)
tuple status
Definition: ntuplemaker.py:245
void usePDFMember(int nset, int member)

Member Data Documentation

std::string PdfWeightProducer::fixPOWHEG_
private

Definition at line 30 of file PdfWeightProducer.cc.

Referenced by PdfWeightProducer(), and produce().

edm::InputTag PdfWeightProducer::genTag_
private

Definition at line 31 of file PdfWeightProducer.cc.

Referenced by produce().

edm::InputTag PdfWeightProducer::pdfInfoTag_
private

Definition at line 32 of file PdfWeightProducer.cc.

Referenced by produce().

std::vector<std::string> PdfWeightProducer::pdfSetNames_
private

Definition at line 33 of file PdfWeightProducer.cc.

Referenced by beginJob(), PdfWeightProducer(), and produce().

std::vector<std::string> PdfWeightProducer::pdfShortNames_
private

Definition at line 34 of file PdfWeightProducer.cc.

Referenced by PdfWeightProducer(), and produce().