9#include "CorrFitInfo.h"
20 CorrFitInfo::CorrFitInfo() : TNamed(), fCF(nullptr), fMacroText(
""), fPairFile(
""), fVertical(kFALSE) { SetName(
"Info"); }
22 CorrFitInfo::~CorrFitInfo() {
26 void CorrFitInfo::Print(Option_t* )
const {
27 Cout::InStars(
"CorrFitInfo", kWhite);
30 Cout::Text(Form(
"Pair File : %s", fPairFile.Data()),
"R", kWhite);
31 Cout::InStars(
"Macro text", kWhite);
32 std::cout << fMacroText << std::endl;
35 CorrFitInfo::CorrFitInfo(
const CorrFitInfo& other) : TNamed() {
36 SetName(other.GetName());
37 fCF = other.fCF->Clone();
38 fMacroText = other.fMacroText;
39 fPairFile = other.fMacroText;
40 fSetup = other.fSetup;
41 fVertical = other.fVertical;
44 Int_t CorrFitInfo::GetMainBins()
const {