33 pset.
existsAs<
bool>(
"floatShapeParameters")?pset.
getParameter<
bool>(
"floatShapeParameters"):
true,
34 pset.
existsAs<vector<string> >(
"fixVars")?pset.
getParameter<vector<string> >(
"fixVars"):vector<string>()
41 if (pset.
existsAs<
bool>(
"binnedFit")) {
44 }
else if (pset.
existsAs<uint32_t>(
"binsForMassPlots")) {
48 if (pset.
existsAs<
bool>(
"saveDistributionsPlot")) {
56 for (vector<string>::const_iterator
name = variableNames.begin();
name != variableNames.end();
name++) {
59 if(var.size()>=4 && !(istringstream(var[1])>>lo).
fail() && !(istringstream(var[2])>>hi).
fail()){
62 LogError(
"TagProbeFitTreeAnalyzer")<<
"Could not create variable: "<<*name<<
63 ". Example: pt = cms.vstring(\"Probe pT\", \"1.0\", \"100.0\", \"GeV/c\") ";
69 for (vector<string>::const_iterator name = categoryNames.begin(); name != categoryNames.end(); name++) {
74 LogError(
"TagProbeFitTreeAnalyzer")<<
"Could not create category: "<<*name<<
75 ". Example: mcTrue = cms.vstring(\"MC True\", \"dummy[true=1,false=0]\") ";
82 for (vector<string>::const_iterator name = exprNames.begin(); name != exprNames.end(); name++) {
85 vector<string>
args(expr.begin()+2,expr.end());
88 LogError(
"TagProbeFitTreeAnalyzer")<<
"Could not create expr: "<<*name<<
89 ". Example: qop = cms.vstring(\"qOverP\", \"charge/p\", \"charge\", \"p\") ";
98 for (vector<string>::const_iterator name = cutNames.begin(); name != cutNames.end(); name++) {
99 vector<string> cat = cuts.
getParameter<vector<string> >(*name);
103 LogError(
"TagProbeFitTreeAnalyzer")<<
"Could not create cut: "<<*name<<
104 ". Example: matched = cms.vstring(\"Matched\", \"deltaR\", \"0.5\") ";
112 for (vector<string>::const_iterator name = pdfNames.begin(); name != pdfNames.end(); name++) {
113 vector<string> pdf = pdfs.
getParameter<vector<string> >(*name);
120 for (vector<string>::const_iterator name = efficiencyNames.begin(); name != efficiencyNames.end(); name++) {
void setSaveDistributionsPlot(bool saveDistributionsPlot_)
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
bool existsAs(std::string const ¶meterName, bool trackiness=true) const
checks if a parameter exists as a given type
void addPdf(std::string pdfName, std::vector< std::string > &pdfCommands)
void setWeightVar(const std::string &weight)
set a variable to be used as weight for a dataset. empty string means no weights. ...
void calculateEfficiency(string name, const edm::ParameterSet &pset)
bool addThresholdCategory(std::string categoryName, std::string title, std::string varName, double cutValue)
adds a new category based on a cut
std::vector< std::string > getParameterNamesForType(bool trackiness=true) const
void setQuiet(bool quiet_=true)
suppress most of the output from RooFit and Minuit
bool addExpression(std::string expressionName, std::string title, std::string expression, const std::vector< std::string > &arguments)
adds a new category based on a cut
void setBinnedFit(bool binned, int bins=0)
set if to do a binned fit
void setSplitMode(unsigned int nevents)
void setBinsForMassPlots(int bins)
set number of bins to use when making the plots; 0 = automatic
bool addCategory(std::string categoryName, std::string title, std::string expression)
adds a new category variable to the set of variables describing the data in the tree; "expression" is...
bool addVariable(std::string variableName, std::string title, double low, double hi, std::string units)
adds a new real variable to the set of variables describing the data in the tree