Namespaces | |
namespace | cc |
Classes | |
class | BranchingRatios |
class | CBInputStream |
class | CommonBlocks |
class | Hadronisation |
class | HEPEUP |
class | HEPRUP |
class | JetClustering |
class | JetInput |
class | JetMatching |
class | JetMatchingMadgraph |
class | JetMatchingMLM |
class | LHEEvent |
class | LHEProxy |
class | LHEReader |
class | LHERunInfo |
class | Matching |
struct | MEMAEV |
struct | MEMAIN |
struct | PYPART |
class | Pythia8Hadronisation |
class | SimpleMatrix |
class | STLInputStream |
class | StorageInputStream |
class | StorageWrap |
class | ThePEGHadronisation |
struct | UPPRIV |
class | XMLDocument |
class | XMLInputSourceWrapper |
class | XMLSimpleStr |
class | XMLUniStr |
Typedefs | |
typedef XMLInputSourceWrapper < CBInputStream > | CBInputSource |
typedef XMLInputSourceWrapper < STLInputStream > | STLInputSource |
typedef XMLInputSourceWrapper < StorageInputStream > | StorageInputSource |
Functions | |
static void | attributesToDom (DOMElement *dom, const Attributes &attributes) |
DEFINE_LHE_HADRONISATION_PLUGIN (ThePEGHadronisation) | |
DEFINE_LHE_HADRONISATION_PLUGIN (Pythia8Hadronisation) | |
static std::vector< std::string > | domToLines (const DOMNode *node) |
static void | fillHeader (LHERunInfo::Header &header, const char *data, int len=-1) |
static void | fillLines (std::vector< std::string > &lines, const char *data, int len=-1) |
static void | fixSubTree (HepMC::GenVertex *vertex, HepMC::FourVector time, std::set< const HepMC::GenVertex * > &visited) |
static int | getStatus (const HepMC::GenParticle *p) |
static void | invalidateTree (JetInput::ParticleBitmap &invalid, const JetInput::ParticleVector &p, const HepMC::GenVertex *v) |
static bool | isContained (const std::vector< unsigned int > &list, int id) |
data refman pasoursint CMSSW_5_3_9_patch3 src GeneratorInterface LHEInterface src LHEReader static cc void | logFileAction (char const *msg, std::string const &fileName) |
void | mgevnt_ (void) |
void | mginit_ (int *npara, Param *params, Param *values) |
void | mgveto_ (int *veto) |
static unsigned int | partIdx (const JetInput::ParticleVector &p, const HepMC::GenParticle *particle) |
template<typename T > | |
static void | pop (std::vector< T > &vec, unsigned int index) |
Variables | |
struct lhef::MEMAEV | memaev_ |
struct lhef::MEMAIN | memain_ |
struct lhef::PYPART | pypart_ |
struct lhef::UPPRIV | uppriv_ |
Definition at line 188 of file XMLUtils.h.
Definition at line 189 of file XMLUtils.h.
Definition at line 190 of file XMLUtils.h.
static void lhef::attributesToDom | ( | DOMElement * | dom, |
const Attributes & | attributes | ||
) | [static] |
Definition at line 140 of file LHEReader.cc.
References i, mergeVDriftHistosByStation::name, and relativeConstraints::value.
Referenced by lhef::LHEReader::XMLHandler::startElement().
{ for(unsigned int i = 0; i < attributes.getLength(); i++) { const XMLCh *name = attributes.getQName(i); const XMLCh *value = attributes.getValue(i); dom->setAttribute(name, value); } }
lhef::DEFINE_LHE_HADRONISATION_PLUGIN | ( | ThePEGHadronisation | ) |
lhef::DEFINE_LHE_HADRONISATION_PLUGIN | ( | Pythia8Hadronisation | ) |
static std::vector<std::string> lhef::domToLines | ( | const DOMNode * | node | ) | [static] |
Definition at line 371 of file LHERunInfo.cc.
References fillLines(), AlCaHLTBitMon_ParallelJobs::p, lumiQueryAPI::q, and query::result.
Referenced by lhef::LHERunInfo::findHeader().
{ std::vector<std::string> result; DOMImplementation *impl = DOMImplementationRegistry::getDOMImplementation( XMLUniStr("Core")); std::auto_ptr<DOMWriter> writer( static_cast<DOMImplementationLS*>(impl)->createDOMWriter()); writer->setEncoding(XMLUniStr("UTF-8")); XMLSimpleStr buffer(writer->writeToString(*node)); const char *p = std::strchr((const char*)buffer, '>') + 1; const char *q = std::strrchr(p, '<'); fillLines(result, p, q - p); return result; }
static void lhef::fillHeader | ( | LHERunInfo::Header & | header, |
const char * | data, | ||
int | len = -1 |
||
) | [static] |
Definition at line 150 of file LHEReader.cc.
Referenced by lhef::LHEReader::XMLHandler::comment(), and lhef::LHEReader::XMLHandler::endElement().
{ const char *end = len >= 0 ? (data + len) : 0; while(*data && (!end || data < end)) { std::size_t len = std::strcspn(data, "\r\n"); if (end && data + len > end) len = end - data; if (data[len] == '\r' && data[len + 1] == '\n') len += 2; else if (data[len]) len++; header.addLine(std::string(data, len)); data += len; } }
static void lhef::fillLines | ( | std::vector< std::string > & | lines, |
const char * | data, | ||
int | len = -1 |
||
) | [static] |
Definition at line 354 of file LHERunInfo.cc.
Referenced by domToLines().
{ const char *end = len >= 0 ? (data + len) : 0; while(*data && (!end || data < end)) { std::size_t len = std::strcspn(data, "\r\n"); if (end && data + len > end) len = end - data; if (data[len] == '\r' && data[len + 1] == '\n') len += 2; else if (data[len]) len++; lines.push_back(std::string(data, len)); data += len; } }
static void lhef::fixSubTree | ( | HepMC::GenVertex * | vertex, |
HepMC::FourVector | time, | ||
std::set< const HepMC::GenVertex * > & | visited | ||
) | [static] |
Definition at line 487 of file LHEEvent.cc.
Referenced by lhef::LHEEvent::fixHepMCEventTimeOrdering().
{ HepMC::FourVector curTime = vertex->position(); bool needsFixup = curTime.t() < time.t(); if (!visited.insert(vertex).second && !needsFixup) return; if (needsFixup) vertex->set_position(time); else time = curTime; for(HepMC::GenVertex::particles_out_const_iterator iter = vertex->particles_out_const_begin(); iter != vertex->particles_out_const_end(); ++iter) { HepMC::GenVertex *endVertex = (*iter)->end_vertex(); if (endVertex) fixSubTree(endVertex, time, visited); } }
static int lhef::getStatus | ( | const HepMC::GenParticle * | p | ) | [static] |
Definition at line 181 of file Pythia8Hadronisation.cc.
References ntuplemaker::status.
Referenced by lhef::Pythia8Hadronisation::doHadronisation(), DataCertificationJetMET::endRun(), SherpaHadronizer::finalizeEvent(), SiPixelHistoPlotter::makePlot(), and SiPixelInformationExtractor::sendTkUpdatedStatus().
static void lhef::invalidateTree | ( | JetInput::ParticleBitmap & | invalid, |
const JetInput::ParticleVector & | p, | ||
const HepMC::GenVertex * | v | ||
) | [static] |
Definition at line 143 of file JetInput.cc.
References UserOptions_cff::idx, and partIdx().
Referenced by lhef::JetInput::operator()().
{ if (!v) return; for(HepMC::GenVertex::particles_out_const_iterator iter = v->particles_out_const_begin(); iter != v->particles_out_const_end(); ++iter) { unsigned int idx = partIdx(p, *iter); if (invalid[idx]) continue; invalid[idx] = true; const HepMC::GenVertex *v = (*iter)->end_vertex(); invalidateTree(invalid, p, v); } }
static bool lhef::isContained | ( | const std::vector< unsigned int > & | list, |
int | id | ||
) | [inline, static] |
Definition at line 89 of file JetInput.cc.
References pos.
Referenced by TopDecaySubset::checkWBosons(), lhef::JetInput::isExcludedFromResonances(), lhef::JetInput::isIgnored(), and lhef::JetInput::isResonance().
data refman pasoursint CMSSW_5_3_9_patch3 src GeneratorInterface LHEInterface src LHEReader static cc void lhef::logFileAction | ( | char const * | msg, |
std::string const & | fileName | ||
) | [static] |
Definition at line 35 of file LHEReader.cc.
Referenced by lhef::LHEReader::next().
void lhef::mgevnt_ | ( | void | ) |
Referenced by lhef::JetMatchingMadgraph::beforeHadronisation().
void lhef::mginit_ | ( | int * | npara, |
Param * | params, | ||
Param * | values | ||
) |
Referenced by lhef::JetMatchingMadgraph::init().
void lhef::mgveto_ | ( | int * | veto | ) |
Referenced by lhef::JetMatchingMadgraph::match().
static unsigned int lhef::partIdx | ( | const JetInput::ParticleVector & | p, |
const HepMC::GenParticle * | particle | ||
) | [static] |
Definition at line 130 of file JetInput.cc.
References pos.
Referenced by lhef::JetInput::fromHardProcess(), lhef::JetInput::fromResonance(), lhef::JetInput::fromSignalVertex(), invalidateTree(), and lhef::JetInput::testPartonChildren().
static void lhef::pop | ( | std::vector< T > & | vec, |
unsigned int | index | ||
) | [inline, static] |
Definition at line 149 of file LHEEvent.cc.
References findQualityFiles::size.
Referenced by lhef::LHEEvent::removeParticle().
struct lhef::MEMAEV lhef::memaev_ |
Referenced by lhef::JetMatchingMadgraph::match().
struct lhef::MEMAIN lhef::memain_ |
Referenced by lhef::JetMatchingMadgraph::JetMatchingMadgraph(), and lhef::JetMatchingMadgraph::match().
struct lhef::PYPART lhef::pypart_ |
Referenced by lhef::JetMatchingMadgraph::beforeHadronisation().
struct lhef::UPPRIV lhef::uppriv_ |
Referenced by lhef::JetMatchingMadgraph::beforeHadronisation(), and lhef::JetMatchingMadgraph::init().