コード例 #1
0
void getHistoInfo ()
{
  listHistosNum = new TList(); 
  listHistosDen = new TList(); 
  bool boolNameStrings = true;
  listHistosNum = readHistos(inputRootFileNum, boolNameStrings);
  boolNameStrings = false;
  listHistosDen = readHistos(inputRootFileDen, boolNameStrings); 

} // close getHistoInfo function
コード例 #2
0
ファイル: Plots2D.cpp プロジェクト: phy6phs/PlottingTools
void Plots2D::savePlot(AllSamples samples, Variable variable){

	readHistos(samples, variable);

	TH2D* ttbar = samples.ttbar->histo2d;

	standardPlot(ttbar, variable);

	delete ttbar;

}