CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
SideBandSubtraction.cc File Reference
#include "PhysicsTools/Utilities/interface/SideBandSubtraction.h"
#include <iostream>
#include <cstdlib>
#include <sstream>
#include <TCanvas.h>
#include <TFile.h>
#include <TF1.h>
#include <TH1F.h>
#include <TString.h>
#include <TKey.h>
#include <TClass.h>
#include <RooFitResult.h>
#include <RooRealVar.h>
#include <RooAbsPdf.h>
#include <RooDataSet.h>
#include <RooPlot.h>

Go to the source code of this file.

Functions

static void print_histo (TH1F *plot, string outname)
 
static void setHistOptions (TH1F *histo, string name, string title, string axis_label)
 
template<class T >
std::string stringify (const T &t)
 

Function Documentation

static void print_histo ( TH1F *  plot,
string  outname 
)
static

Definition at line 140 of file SideBandSubtraction.cc.

Referenced by SideBandSubtract::printResults().

141 {
142  TCanvas genericCanvas;
143  plot->Draw("E1P0");
144  outname = outname + ".eps";
145  genericCanvas.SaveAs(outname.c_str());
146  outname.replace(outname.size()-3,3,"gif");
147  genericCanvas.SaveAs(outname.c_str());
148 }
static void setHistOptions ( TH1F *  histo,
string  name,
string  title,
string  axis_label 
)
static

Definition at line 68 of file SideBandSubtraction.cc.

Referenced by SideBandSubtract::doSubtraction().

69 {
70 
71  histo->SetName(name.c_str());
72  histo->SetTitle(title.c_str());
73  if(axis_label == "GeV/c^2")
74  axis_label = "Mass (" + axis_label + ")";
75  if(axis_label == "GeV/c")
76  axis_label = "Momentum (" + axis_label + ")";
77  histo->GetXaxis()->SetTitle(axis_label.c_str());
78 }
template<class T >
std::string stringify ( const T t)
inline

Definition at line 43 of file SideBandSubtraction.cc.

References python.connectstrParser::o.

Referenced by SideBandSubtract::addSideBandRegion(), SideBandSubtract::addSignalRegion(), and SideBandSubtract::saveResults().

44 {
45  std::ostringstream o;
46  if (!(o << t))
47  return "err";
48  return o.str();
49 }