CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Protected Attributes
gen::JetMatching Class Referenceabstract

#include <JetMatching.h>

Inheritance diagram for gen::JetMatching:
gen::JetMatchingAlpgen gen::JetMatchingMadgraph gen::JetMatchingMGFastJet

Public Member Functions

virtual void beforeHadronisation (const lhef::LHEEvent *event)
 
virtual void beforeHadronisationExec ()
 
virtual std::set< std::string > capabilities () const
 
virtual double getJetEtaMax () const =0
 
virtual const std::vector< int > * getPartonList ()
 
virtual void init (const lhef::LHERunInfo *runInfo)
 
virtual bool initAfterBeams ()
 
bool isMatchingDone ()
 
 JetMatching (const edm::ParameterSet &params)
 
virtual int match (const lhef::LHEEvent *partonLevel, const std::vector< fastjet::PseudoJet > *jetInput)=0
 
void resetMatchingStatus ()
 
virtual ~JetMatching ()
 

Static Public Member Functions

static std::unique_ptr< JetMatchingcreate (const edm::ParameterSet &params)
 

Protected Attributes

bool fMatchingStatus
 

Detailed Description

Definition at line 29 of file JetMatching.h.

Constructor & Destructor Documentation

gen::JetMatching::JetMatching ( const edm::ParameterSet params)

Definition at line 18 of file JetMatching.cc.

References fMatchingStatus.

19 {
20  fMatchingStatus=false;
21 }
gen::JetMatching::~JetMatching ( )
virtual

Definition at line 23 of file JetMatching.cc.

24 {
25 }

Member Function Documentation

void gen::JetMatching::beforeHadronisation ( const lhef::LHEEvent event)
virtual
void gen::JetMatching::beforeHadronisationExec ( )
virtual
std::set< std::string > gen::JetMatching::capabilities ( ) const
virtual

Reimplemented in gen::JetMatchingMadgraph, and gen::JetMatchingAlpgen.

Definition at line 39 of file JetMatching.cc.

References mps_fire::result.

40 {
41  std::set<std::string> result;
42  result.insert("psFinalState");
43  result.insert("hepmc");
44  return result;
45 }
std::unique_ptr< JetMatching > gen::JetMatching::create ( const edm::ParameterSet params)
static

Definition at line 47 of file JetMatching.cc.

References Exception, edm::ParameterSet::getParameter(), PFTauMatching_cfi::matching, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by gen::Pythia6Hadronizer::Pythia6Hadronizer().

48 {
49  std::string scheme = params.getParameter<std::string>("scheme");
50 
51  std::unique_ptr<JetMatching> matching;
52 
53  if (scheme == "Madgraph")
54  {
55  matching.reset(new JetMatchingMadgraph(params));
56  }
57  else if (scheme == "Alpgen")
58  {
59  matching.reset(new JetMatchingAlpgen(params));
60  }
61  else if (scheme == "MLM")
62  {
63  matching.reset();
64  }
65  else
66  throw cms::Exception("InvalidJetMatching")
67  << "Unknown scheme \"" << scheme << "\""
68  " specified for parton-shower matching."
69  << std::endl;
70 
71  if (!matching.get())
72  throw cms::Exception("InvalidJetMatching")
73  << "Port of " << scheme << "scheme \"" << "\""
74  " for parton-shower matching is still in progress."
75  << std::endl;
76 
77  return matching;
78 }
T getParameter(std::string const &) const
virtual double gen::JetMatching::getJetEtaMax ( ) const
pure virtual
virtual const std::vector<int>* gen::JetMatching::getPartonList ( )
inlinevirtual

Reimplemented in gen::JetMatchingMGFastJet.

Definition at line 78 of file JetMatching.h.

References beamerCreator::create().

Referenced by JetMatchingHook::doVetoPartonLevel().

78 { return nullptr; }
void gen::JetMatching::init ( const lhef::LHERunInfo runInfo)
virtual
virtual bool gen::JetMatching::initAfterBeams ( )
inlinevirtual

Reimplemented in gen::JetMatchingMGFastJet.

Definition at line 61 of file JetMatching.h.

References match().

Referenced by JetMatchingHook::initAfterBeams().

61 { return true; }
bool gen::JetMatching::isMatchingDone ( )
inline
virtual int gen::JetMatching::match ( const lhef::LHEEvent partonLevel,
const std::vector< fastjet::PseudoJet > *  jetInput 
)
pure virtual
void gen::JetMatching::resetMatchingStatus ( )
inline

Definition at line 75 of file JetMatching.h.

Referenced by gen::Pythia6Hadronizer::hadronize(), and JetMatchingHook::resetMatchingStatus().

75 { fMatchingStatus = false; }

Member Data Documentation

bool gen::JetMatching::fMatchingStatus
protected

Definition at line 89 of file JetMatching.h.

Referenced by JetMatching(), and gen::JetMatchingMadgraph::match().