Hi all,
My code crashes once I use the RooUnblindOffset as it is in the snippet below. This seems to be working just fine when I use an older version of ROOT, e.g, 6.26/04 .
Do you know what can cause the crash here?
I also attach the segmentation error if helps
segfault.txt (18.0 KB)
.
Many thanks.
RooRealVar* tauB = new RooRealVar("tau","tau",1.6, 1.4 ,1.8 );
std::string blindname = "blindTau";
std::string blindString = "McFluff";
RooUnblindOffset* blind = new RooUnblindOffset(blindname.c_str(), blindname.c_str(), blindString.c_str(), 0.02, *tauB );
RooFormulaVar* Gamma = new RooFormulaVar("Gamma","Gamma","-1/@0" ,RooArgSet(*blind));