#include "CommonTools/Utils/src/findMethod.h"
#include "CommonTools/Utils/src/ErrorCodes.h"
#include "CommonTools/Utils/interface/Exception.h"
#include "Reflex/Base.h"
#include "Reflex/TypeTemplate.h"
Go to the source code of this file.
Namespaces | |
namespace | reco |
fixed size matrix | |
Functions | |
int | reco::checkMethod (const ROOT::Reflex::Member &mem, const ROOT::Reflex::Type &type, const std::vector< AnyMethodArgument > &args, std::vector< AnyMethodArgument > &fixuppedArgs) |
static bool | fatalErrorCondition (int iError) |
pair< Member, bool > | reco::findMethod (const Type &t, const string &name, const std::vector< AnyMethodArgument > &args, std::vector< AnyMethodArgument > &fixuppedArgs, const char *iIterator, int &oError) |
static bool fatalErrorCondition | ( | int | iError | ) | [static] |
Definition at line 12 of file findMethod.cc.
References reco::parser::kIsConstructor, reco::parser::kIsDestructor, reco::parser::kIsFunctionAddedByROOT, reco::parser::kIsNotPublic, reco::parser::kIsOperator, and reco::parser::kIsStatic.
Referenced by reco::findMethod().
{ return (reco::parser::kIsNotPublic==iError || reco::parser::kIsStatic==iError || reco::parser::kIsFunctionAddedByROOT==iError || reco::parser::kIsConstructor==iError || reco::parser::kIsDestructor==iError || reco::parser::kIsOperator==iError); }