CMS 3D CMS Logo

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

#include <Example/ExternalLHEProducer/src/ExternalLHEProducer.cc>

Inheritance diagram for ExternalLHEProducer:
edm::one::EDProducer< edm::BeginRunProducer, edm::EndRunProducer > edm::one::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Classes

class  FileCloseSentry
 

Public Member Functions

 ExternalLHEProducer (const edm::ParameterSet &iConfig)
 
virtual ~ExternalLHEProducer ()
 
- Public Member Functions inherited from edm::one::EDProducer< edm::BeginRunProducer, edm::EndRunProducer >
 EDProducer ()=default
 
- Public Member Functions inherited from edm::one::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducerBase ()
 
- 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 ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from edm::one::EDProducerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 

Private Member Functions

virtual void beginRunProduce (edm::Run &run, edm::EventSetup const &es) override
 
int closeDescriptors (int preserve)
 
virtual void endJob () override
 
virtual void endRunProduce (edm::Run &, edm::EventSetup const &) override
 
void executeScript ()
 
virtual void nextEvent ()
 
virtual void produce (edm::Event &, const edm::EventSetup &) override
 
std::auto_ptr< std::string > readOutput ()
 

Private Attributes

std::vector< std::string > args_
 
uint32_t nEvents_
 
uint32_t npars_
 
std::string outputContents_
 
std::string outputFile_
 
boost::shared_ptr< lhef::LHEEventpartonLevel
 
std::auto_ptr< lhef::LHEReaderreader_
 
boost::shared_ptr
< lhef::LHERunInfo
runInfo
 
boost::shared_ptr
< lhef::LHERunInfo
runInfoLast
 
boost::ptr_deque
< LHERunInfoProduct
runInfoProducts
 
std::string scriptName_
 
bool wasMerged
 

Additional Inherited Members

- Public Types inherited from edm::one::EDProducerBase
typedef EDProducerBase ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- 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

Description: [one line class summary]

Implementation: [Notes on implementation]

Definition at line 63 of file ExternalLHEProducer.cc.

Constructor & Destructor Documentation

ExternalLHEProducer::ExternalLHEProducer ( const edm::ParameterSet iConfig)
explicit

Definition at line 124 of file ExternalLHEProducer.cc.

References args_, and npars_.

124  :
125  scriptName_((iConfig.getParameter<edm::FileInPath>("scriptName")).fullPath().c_str()),
126  outputFile_(iConfig.getParameter<std::string>("outputFile")),
127  args_(iConfig.getParameter<std::vector<std::string> >("args")),
128  npars_(iConfig.getParameter<uint32_t>("numberOfParameters")),
129  nEvents_(iConfig.getParameter<uint32_t>("nEvents"))
130 {
131  if (npars_ != args_.size())
132  throw cms::Exception("ExternalLHEProducer") << "Problem with configuration: " << args_.size() << " script arguments given, expected " << npars_;
133  produces<LHEXMLStringProduct, edm::InRun>("LHEScriptOutput");
134 
135  produces<LHEEventProduct>();
136  produces<LHERunInfoProduct, edm::InRun>();
137 }
T getParameter(std::string const &) const
std::vector< std::string > args_
ExternalLHEProducer::~ExternalLHEProducer ( )
virtual

Definition at line 140 of file ExternalLHEProducer.cc.

141 {
142 }

Member Function Documentation

void ExternalLHEProducer::beginRunProduce ( edm::Run run,
edm::EventSetup const &  es 
)
overrideprivatevirtual

Definition at line 206 of file ExternalLHEProducer.cc.

References LHERunInfoProduct::addComment(), LHERunInfoProduct::addHeader(), args_, edm::hlt::Exception, executeScript(), edm::Service< T >::isAvailable(), LogDebug, edm::RandomNumberGenerator::mySeed(), nEvents_, nextEvent(), outputContents_, AlCaHLTBitMon_ParallelJobs::p, edm::Run::put(), reader_, readOutput(), runInfo, runInfoLast, runInfoProducts, createPayload::skip, and wasMerged.

207 {
208 
209  // pass the number of events as previous to last argument
210 
211  std::ostringstream eventStream;
212  eventStream << nEvents_;
213  args_.push_back(eventStream.str());
214 
215  // pass the random number generator seed as last argument
216 
218 
219  if ( ! rng.isAvailable()) {
220  throw cms::Exception("Configuration")
221  << "The ExternalLHEProducer module requires the RandomNumberGeneratorService\n"
222  "which is not present in the configuration file. You must add the service\n"
223  "in the configuration file if you want to run ExternalLHEProducer";
224  }
225  std::ostringstream randomStream;
226  randomStream << rng->mySeed();
227  args_.push_back(randomStream.str());
228 
229  for ( unsigned int iArg = 0; iArg < args_.size() ; iArg++ ) {
230  LogDebug("LHEInputArgs") << "arg [" << iArg << "] = " << args_[iArg];
231  }
232 
233  executeScript();
234  std::auto_ptr<std::string> localContents = readOutput();
235  outputContents_ = *localContents;
236  std::auto_ptr<LHEXMLStringProduct> p(new LHEXMLStringProduct(*localContents));
237  run.put(p, "LHEScriptOutput");
238 
239  // LHE C++ classes translation
240 
241  unsigned int skip = 0;
242  std::auto_ptr<lhef::LHEReader> thisRead( new lhef::LHEReader(outputContents_, skip ) );
243  reader_ = thisRead;
244 
245  nextEvent();
246  if (runInfoLast) {
248 
249  std::auto_ptr<LHERunInfoProduct> product(new LHERunInfoProduct(*runInfo->getHEPRUP()));
250  std::for_each(runInfo->getHeaders().begin(),
251  runInfo->getHeaders().end(),
252  boost::bind(&LHERunInfoProduct::addHeader,
253  product.get(), _1));
254  std::for_each(runInfo->getComments().begin(),
255  runInfo->getComments().end(),
256  boost::bind(&LHERunInfoProduct::addComment,
257  product.get(), _1));
258 
259  // keep a copy around in case of merging
260  runInfoProducts.push_back(new LHERunInfoProduct(*product));
261  wasMerged = false;
262 
263  run.put(product);
264 
265  runInfo.reset();
266  }
267 
268 }
#define LogDebug(id)
std::auto_ptr< std::string > readOutput()
void addHeader(const Header &header)
std::vector< std::string > args_
std::auto_ptr< lhef::LHEReader > reader_
boost::shared_ptr< lhef::LHERunInfo > runInfoLast
bool isAvailable() const
Definition: Service.h:46
boost::shared_ptr< lhef::LHERunInfo > runInfo
void addComment(const std::string &line)
void put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Run.h:107
boost::ptr_deque< LHERunInfoProduct > runInfoProducts
virtual uint32_t mySeed() const =0
Exists for backward compatibility.
int ExternalLHEProducer::closeDescriptors ( int  preserve)
private

Definition at line 284 of file ExternalLHEProducer.cc.

References dir, reco::dp, and NULL.

Referenced by executeScript().

285 {
286  int maxfd = 1024;
287  int fd;
288 #ifdef __linux__
289  DIR * dir;
290  struct dirent *dp;
291  maxfd = preserve;
292  if ((dir = opendir("/proc/self/fd"))) {
293  errno = 0;
294  while ((dp = readdir (dir)) != NULL) {
295  if ((strcmp(dp->d_name, ".") == 0) || (strcmp(dp->d_name, "..") == 0)) {
296  continue;
297  }
298  if (sscanf(dp->d_name, "%d", &fd) != 1) {
299  //throw cms::Exception("closeDescriptors") << "Found unexpected filename in /proc/self/fd: " << dp->d_name;
300  return -1;
301  }
302  if (fd > maxfd) {
303  maxfd = fd;
304  }
305  }
306  if (errno) {
307  //throw cms::Exception("closeDescriptors") << "Unable to determine the number of fd (errno=" << errno << ", " << strerror(errno) << ").";
308  return errno;
309  }
310  closedir(dir);
311  }
312 #endif
313  // TODO: assert for an unreasonable number of fds?
314  for (fd=3; fd<maxfd+1; fd++) {
315  if (fd != preserve)
316  close(fd);
317  }
318  return 0;
319 }
#define NULL
Definition: scimark2.h:8
auto dp
Definition: deltaR.h:24
dbl *** dir
Definition: mlp_gen.cc:35
void ExternalLHEProducer::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::one::EDProducerBase.

Definition at line 199 of file ExternalLHEProducer.cc.

References reader_.

199  {
200 
201  reader_.reset();
202 }
std::auto_ptr< lhef::LHEReader > reader_
void ExternalLHEProducer::endRunProduce ( edm::Run run,
edm::EventSetup const &  es 
)
overrideprivatevirtual

Definition at line 272 of file ExternalLHEProducer.cc.

References edm::Run::put(), and runInfoProducts.

273 {
274 
275  if (!runInfoProducts.empty()) {
276  std::auto_ptr<LHERunInfoProduct> product(runInfoProducts.pop_front().release());
277  run.put(product);
278  }
279 
280 }
void put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Run.h:107
boost::ptr_deque< LHERunInfoProduct > runInfoProducts
void ExternalLHEProducer::executeScript ( )
private

Definition at line 323 of file ExternalLHEProducer.cc.

References dir2webdir::argc, args_, dirstructure::argv, closeDescriptors(), edm::hlt::Exception, i, NULL, sysUtil::pid, pipe::pipe(), SiPixelLorentzAngle_cfi::read, scriptName_, ntuplemaker::status, and TablePrint::write.

Referenced by beginRunProduce().

324 {
325 
326  // Fork a script, wait until it finishes.
327 
328  int rc = 0, rc2 = 0;
329  int filedes[2], fd_flags;
330  unsigned int argc;
331 
332  if (pipe(filedes)) {
333  throw cms::Exception("Unable to create a new pipe");
334  }
335  FileCloseSentry sentry1(filedes[0]), sentry2(filedes[1]);
336 
337  if ((fd_flags = fcntl(filedes[1], F_GETFD, NULL)) == -1) {
338  throw cms::Exception("ExternalLHEProducer") << "Failed to get pipe file descriptor flags (errno=" << rc << ", " << strerror(rc) << ")";
339  }
340  if (fcntl(filedes[1], F_SETFD, fd_flags | FD_CLOEXEC) == -1) {
341  throw cms::Exception("ExternalLHEProducer") << "Failed to set pipe file descriptor flags (errno=" << rc << ", " << strerror(rc) << ")";
342  }
343 
344  argc = 1 + args_.size();
345  // TODO: assert that we have a reasonable number of arguments
346  char **argv = new char *[argc+1];
347  argv[0] = strdup(scriptName_.c_str());
348  for (unsigned int i=1; i<argc; i++) {
349  argv[i] = strdup(args_[i-1].c_str());
350  }
351  argv[argc] = NULL;
352 
353  pid_t pid = fork();
354  if (pid == 0) {
355  // The child process
356  if (!(rc = closeDescriptors(filedes[1]))) {
357  execvp(argv[0], argv); // If execv returns, we have an error.
358  rc = errno;
359  }
360  while ((write(filedes[1], &rc, sizeof(int)) == -1) && (errno == EINTR)) {}
361  _exit(1);
362  }
363 
364  // Free the arg vector ASAP
365  for (unsigned int i=0; i<args_.size()+1; i++) {
366  free(argv[i]);
367  }
368  delete [] argv;
369 
370  if (pid == -1) {
371  throw cms::Exception("ForkException") << "Unable to fork a child (errno=" << errno << ", " << strerror(errno) << ")";
372  }
373 
374  close(filedes[1]);
375  // If the exec succeeds, the read will fail.
376  while (((rc2 = read(filedes[0], &rc, sizeof(int))) == -1) && (errno == EINTR)) { rc2 = 0; }
377  if ((rc2 == sizeof(int)) && rc) {
378  throw cms::Exception("ExternalLHEProducer") << "Failed to execute script (errno=" << rc << ", " << strerror(rc) << ")";
379  }
380  close(filedes[0]);
381 
382  int status = 0;
383  errno = 0;
384  do {
385  if (waitpid(pid, &status, 0) < 0) {
386  if (errno == EINTR) {
387  continue;
388  } else {
389  throw cms::Exception("ExternalLHEProducer") << "Failed to read child status (errno=" << errno << ", " << strerror(errno) << ")";
390  }
391  }
392  if (WIFSIGNALED(status)) {
393  throw cms::Exception("ExternalLHEProducer") << "Child exited due to signal " << WTERMSIG(status) << ".";
394  }
395  if (WIFEXITED(status)) {
396  rc = WEXITSTATUS(status);
397  break;
398  }
399  } while (true);
400  if (rc) {
401  throw cms::Exception("ExternalLHEProducer") << "Child failed with exit code " << rc << ".";
402  }
403 
404 }
int i
Definition: DBlmapReader.cc:9
def pipe
Definition: pipe.py:5
#define NULL
Definition: scimark2.h:8
std::vector< std::string > args_
int closeDescriptors(int preserve)
tuple pid
Definition: sysUtil.py:22
tuple argc
Definition: dir2webdir.py:38
tuple status
Definition: ntuplemaker.py:245
void ExternalLHEProducer::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 436 of file ExternalLHEProducer.cc.

References edm::ParameterSetDescription::add(), edm::ConfigurationDescriptions::addDefault(), edm::ParameterSetDescription::setComment(), and AlCaHLTBitMon_QueryRunRegistry::string.

436  {
437  //The following says we do not know what parameters are allowed so do no validation
438  // Please change this to state exactly what you do use, even if it is no parameters
440  desc.setComment("Executes an external script and places its output file into an EDM collection");
441 
442  edm::FileInPath thePath;
443  desc.add<edm::FileInPath>("scriptName", thePath);
444  desc.add<std::string>("outputFile", "myoutput");
445  desc.add<std::vector<std::string> >("args");
446  desc.add<uint32_t>("numberOfParameters");
447  desc.add<uint32_t>("nEvents");
448 
449  descriptions.addDefault(desc);
450 }
void setComment(std::string const &value)
void addDefault(ParameterSetDescription const &psetDescription)
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void ExternalLHEProducer::nextEvent ( )
privatevirtual

Definition at line 452 of file ExternalLHEProducer.cc.

References partonLevel, reader_, runInfo, and runInfoLast.

Referenced by beginRunProduce(), and produce().

453 {
454 
455  if (partonLevel)
456  return;
457 
458  partonLevel = reader_->next();
459  if (!partonLevel)
460  return;
461 
462  boost::shared_ptr<lhef::LHERunInfo> runInfoThis = partonLevel->getRunInfo();
463  if (runInfoThis != runInfoLast) {
464  runInfo = runInfoThis;
465  runInfoLast = runInfoThis;
466  }
467 }
boost::shared_ptr< lhef::LHEEvent > partonLevel
std::auto_ptr< lhef::LHEReader > reader_
boost::shared_ptr< lhef::LHERunInfo > runInfoLast
boost::shared_ptr< lhef::LHERunInfo > runInfo
void ExternalLHEProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Implements edm::one::EDProducerBase.

Definition at line 151 of file ExternalLHEProducer.cc.

References LHEEventProduct::addComment(), LHERunInfoProduct::addComment(), LHERunInfoProduct::addHeader(), nextEvent(), partonLevel, edm::Event::put(), runInfo, runInfoProducts, and wasMerged.

152 {
153  nextEvent();
154  if (!partonLevel)
155  return;
156 
157  std::auto_ptr<LHEEventProduct> product(
158  new LHEEventProduct(*partonLevel->getHEPEUP(),
159  partonLevel->originalXWGTUP())
160  );
161  if (partonLevel->getPDF())
162  product->setPDF(*partonLevel->getPDF());
163  std::for_each(partonLevel->getComments().begin(),
164  partonLevel->getComments().end(),
165  boost::bind(&LHEEventProduct::addComment,
166  product.get(), _1));
167 
168  iEvent.put(product);
169 
170  if (runInfo) {
171  std::auto_ptr<LHERunInfoProduct> product(new LHERunInfoProduct(*runInfo->getHEPRUP()));
172  std::for_each(runInfo->getHeaders().begin(),
173  runInfo->getHeaders().end(),
174  boost::bind(&LHERunInfoProduct::addHeader,
175  product.get(), _1));
176  std::for_each(runInfo->getComments().begin(),
177  runInfo->getComments().end(),
178  boost::bind(&LHERunInfoProduct::addComment,
179  product.get(), _1));
180 
181  if (!runInfoProducts.empty()) {
182  runInfoProducts.front().mergeProduct(*product);
183  if (!wasMerged) {
184  runInfoProducts.pop_front();
185  runInfoProducts.push_front(product);
186  wasMerged = true;
187  }
188  }
189 
190  runInfo.reset();
191  }
192 
193  partonLevel.reset();
194  return;
195 }
boost::shared_ptr< lhef::LHEEvent > partonLevel
void addHeader(const Header &header)
void addComment(const std::string &line)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
boost::shared_ptr< lhef::LHERunInfo > runInfo
void addComment(const std::string &line)
boost::ptr_deque< LHERunInfoProduct > runInfoProducts
std::auto_ptr< std::string > ExternalLHEProducer::readOutput ( )
private

Definition at line 408 of file ExternalLHEProducer.cc.

References BUFSIZE, edm::hlt::Exception, n, outputFile_, SiPixelLorentzAngle_cfi::read, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by beginRunProduce().

409 {
410  int fd;
411  ssize_t n;
412  char buf[BUFSIZE];
413 
414  if ((fd = open(outputFile_.c_str(), O_RDONLY)) == -1) {
415  throw cms::Exception("OutputOpenError") << "Unable to open script output file " << outputFile_ << " (errno=" << errno << ", " << strerror(errno) << ").";
416  }
417 
418  std::stringstream ss;
419  while ((n = read(fd, buf, BUFSIZE)) > 0 || (n == -1 && errno == EINTR)) {
420  if (n > 0)
421  ss.write(buf, n);
422  }
423  if (n == -1) {
424  throw cms::Exception("OutputOpenError") << "Unable to read from script output file " << outputFile_ << " (errno=" << errno << ", " << strerror(errno) << ").";
425  }
426 
427  if (unlink(outputFile_.c_str())) {
428  throw cms::Exception("OutputDeleteError") << "Unable to delete original script output file " << outputFile_ << " (errno=" << errno << ", " << strerror(errno) << ").";
429  }
430 
431  return std::auto_ptr<std::string>(new std::string(ss.str()));
432 }
#define BUFSIZE

Member Data Documentation

std::vector<std::string> ExternalLHEProducer::args_
private
uint32_t ExternalLHEProducer::nEvents_
private

Definition at line 89 of file ExternalLHEProducer.cc.

Referenced by beginRunProduce().

uint32_t ExternalLHEProducer::npars_
private

Definition at line 88 of file ExternalLHEProducer.cc.

Referenced by ExternalLHEProducer().

std::string ExternalLHEProducer::outputContents_
private

Definition at line 90 of file ExternalLHEProducer.cc.

Referenced by beginRunProduce().

std::string ExternalLHEProducer::outputFile_
private

Definition at line 86 of file ExternalLHEProducer.cc.

Referenced by readOutput().

boost::shared_ptr<lhef::LHEEvent> ExternalLHEProducer::partonLevel
private

Definition at line 95 of file ExternalLHEProducer.cc.

Referenced by nextEvent(), and produce().

std::auto_ptr<lhef::LHEReader> ExternalLHEProducer::reader_
private

Definition at line 92 of file ExternalLHEProducer.cc.

Referenced by beginRunProduce(), endJob(), and nextEvent().

boost::shared_ptr<lhef::LHERunInfo> ExternalLHEProducer::runInfo
private

Definition at line 94 of file ExternalLHEProducer.cc.

Referenced by beginRunProduce(), nextEvent(), and produce().

boost::shared_ptr<lhef::LHERunInfo> ExternalLHEProducer::runInfoLast
private

Definition at line 93 of file ExternalLHEProducer.cc.

Referenced by beginRunProduce(), and nextEvent().

boost::ptr_deque<LHERunInfoProduct> ExternalLHEProducer::runInfoProducts
private

Definition at line 96 of file ExternalLHEProducer.cc.

Referenced by beginRunProduce(), endRunProduce(), and produce().

std::string ExternalLHEProducer::scriptName_
private

Definition at line 85 of file ExternalLHEProducer.cc.

Referenced by executeScript().

bool ExternalLHEProducer::wasMerged
private

Definition at line 97 of file ExternalLHEProducer.cc.

Referenced by beginRunProduce(), and produce().