118 RooCmdConfig pc(
"RooMCStudy::RooMCStudy(" + std::string(model.GetName()) +
")");
121 pc.
defineSet(
"condObs",
"ProjectedObservables",0,
nullptr) ;
122 pc.
defineObject(
"protoData",
"PrototypeData",0,
nullptr) ;
123 pc.
defineSet(
"cPars",
"Constrain",0,
nullptr) ;
124 pc.
defineSet(
"extCons",
"ExternalConstraints",0,
nullptr) ;
126 pc.
defineInt(
"randProtoData",
"PrototypeData",0,0) ;
127 pc.
defineInt(
"verboseGen",
"Verbose",0,0) ;
128 pc.
defineInt(
"extendedGen",
"Extended",0,0) ;
129 pc.
defineInt(
"binGenData",
"Binned",0,0) ;
136 throw std::string(
"RooMCStudy::RooMCStudy() Error in parsing arguments passed to constructor") ;
143 for (
int i=0 ; i<fitOptArg->
subArgs().GetSize() ;i++) {
159 auto cPars = std::make_unique<RooArgSet>();
161 cPars->add(*cParsTmp) ;
176 if (std::unique_ptr<RooArgSet> constraints{model.getAllConstraints(observables,*cPars,
true)}) {
177 allConstraints.
add(*constraints) ;
182 if (!allConstraints.
empty()) {
183 _constrPdf = std::make_unique<RooProdPdf>(
"mcs_constr_prod",
"RooMCStudy constraints product",allConstraints);
186 consPars.
add(*cPars) ;
189 model.getParameters(&observables, params);
192 consPars.
add(cparams) ;
198 coutI(Generation) <<
"RooMCStudy::RooMCStudy: INFO have pdf with constraints, will generate parameters from constraint pdf for each experiment" << std::endl ;
209 if (
auto condObs = pc.
getSet(
"condObs",
nullptr)) {
219 oocoutW(
_fitModel,Generation) <<
"RooMCStudy::RooMCStudy: WARNING Using generator option 'e' (Poisson distribution of #events) together " << std::endl
220 <<
" with a prototype dataset implies incomplete sampling or oversampling of proto data." << std::endl
221 <<
" Use option \"r\" to randomize prototype dataset order and thus to randomize" << std::endl
222 <<
" the set of over/undersampled prototype events for each generation cycle." << std::endl ;
240 _nllVar = std::make_unique<RooRealVar>(
"NLL",
"-log(Likelihood)",0);
243 _ngenVar = std::make_unique<RooRealVar>(
"ngen",
"number of generated events",0);
255 fpdName =
"fitParData_" + std::string(
_fitModel->GetName());
257 fpdName=
"fitParData_" + std::string(
_fitModel->GetName()) +
"_" + std::string(
_genModel->GetName());
260 _fitParData = std::make_unique<RooDataSet>(fpdName,
"Fit Parameters DataSet",tmp2);
275 bool ok = (*iter)->doInitializeInstance(*
this) ;
277 oocoutE(
_fitModel,Generation) <<
"RooMCStudy::ctor: removing study module " << (*iter)->GetName() <<
" from analysis chain because initialization failed" << std::endl ;
301 module.doInitializeInstance(*this) ;
329 mod->initializeRun(nSamples) ;
332 int prescale = nSamples>100 ?
int(nSamples/100) : 1 ;
336 if (nSamples%prescale==0) {
344 std::unique_ptr<RooAbsData> ownedGenSample;
346 bool existingData = false ;
349 int nEvt(nEvtPerSample) ;
366 mod->processBeforeGen(nSamples) ;
390 oocoutI(
_fitModel,Generation) <<
"RooMCStudy: (Re)randomizing event order in prototype dataset (Nevt=" << nEvt <<
")" << std::endl ;
398 ownedGenSample = std::unique_ptr<RooAbsData>{
_genContext->generate(nEvt)};
401 ownedGenSample = std::make_unique<RooDataSet>(
"emptySample",
"emptySample",
_dependents);
408 }
else if (asciiFilePat) {
411 char asciiFile[1024] ;
412 snprintf(asciiFile,1024,asciiFilePat,nSamples) ;
414 ownedGenSample = std::unique_ptr<RooDataSet>{
RooDataSet::read(asciiFile,depList,
"q")};
421 existingData = true ;
423 oocoutW(
_fitModel,Generation) <<
"RooMCStudy::run: WARNING: Sample #" << nSamples <<
" not loaded, skipping" << std::endl ;
433 mod->processBetweenGenAndFit(nSamples) ;
441 mod->processAfterFit(fitOk) ;
445 if (doGenerate && asciiFilePat && *asciiFilePat) {
446 char asciiFile[1024] ;
447 snprintf(asciiFile,1024,asciiFilePat,nSamples) ;
449 unbinnedData->write(asciiFile) ;
451 coutE(InputArguments) <<
"RooMCStudy::run(" <<
GetName() <<
") ERROR: ASCII writing of binned datasets is not supported" << std::endl ;
464 if (
RooDataSet* auxData = mod->finalizeRun()) {
473 _genParData->changeObservableName(arg->GetName(),(std::string(arg->GetName()) +
"_gen").c_str());
510 return run(
true,
true,nSamples,nEvtPerSample,keepGenData,asciiFilePat) ;
530 return run(
true,
false,nSamples,nEvtPerSample,keepGenData,asciiFilePat) ;
548 return run(
false,
true,nSamples,0,
false,asciiFilePat) ;
569 return run(
false,
true,nSamples,0,
true,
nullptr) ;
591 std::unique_ptr<RooDataHist> ownedDataHist;
596 ownedDataHist = std::make_unique<RooDataHist>(genSample->
GetName(),genSample->
GetTitle(),depList,*genSample) ;
597 data = ownedDataHist.get();
607 fitOptList.
Add(&save) ;
609 fitOptList.
Add(&condo) ;
611 fitOptList.
Add(&plevel) ;
612 return _fitModel->fitTo(*data,fitOptList);
627 std::unique_ptr<RooFitResult> fr;
629 fr = std::unique_ptr<RooFitResult>{
doFit(genSample)};
655 std::unique_ptr<RooFitResult> fr;
657 fr = std::unique_ptr<RooFitResult>{
doFit(genSample)};
658 ok = (fr->status()==0) ;
665 _nllVar->setVal(fr->minNll()) ;
696 oocoutE(
_fitModel,InputArguments) <<
"RooMCStudy::addFitResult: ERROR cannot add fit results in current state" << std::endl ;
704 bool ok = (fr.
status()==0) ;
730 const auto par =
static_cast<RooRealVar*
>(*it);
731 _fitParData->addColumn(*std::unique_ptr<RooErrorVar>{par->errorVar()});
734 TString title(par->GetTitle());
735 name.Append(
"pull") ;
736 title.Append(
" Pull") ;
738 if (!par->hasError(
false)) {
739 coutW(Generation) <<
"Fit parameter '" << par->GetName() <<
"' does not have an error."
740 " A pull distribution cannot be generated. This might be caused by the parameter being constant or"
741 " because the fits were not run." << std::endl;
763 coutW(Generation) <<
"The fit parameter '" << par->GetName() <<
"' is not in the model that was used to generate toy data. "
764 "The parameter '" << genParOrig->GetName() <<
"'=" << genParOrig->getVal() <<
" was found at the same position in the generator model."
765 " It will be used to compute pulls."
766 "\nIf this is not desired, the parameters of the generator model need to be renamed or reordered." << std::endl;
771 std::unique_ptr<RooAbsReal> genPar(
static_cast<RooAbsReal*
>(genParOrig->Clone(
"truth")));
776 coutE(Generation) <<
"Cannot generate pull distribution for the fit parameter '" << par->GetName() <<
"'."
777 "\nNo similar parameter was found in the set of parameters that were used to generate toy data." << std::endl;
816 if (sampleNum<0 || sampleNum>=
_fitParData->numEntries()) {
817 oocoutE(
_fitModel,InputArguments) <<
"RooMCStudy::fitParams: ERROR, invalid sample number: " << sampleNum << std::endl ;
834 if (sampleNum<0 || sampleNum>=
_fitResList.GetSize()) {
835 oocoutE(
_fitModel,InputArguments) <<
"RooMCStudy::fitResult: ERROR, invalid sample number: " << sampleNum << std::endl ;
844 oocoutE(
_fitModel,InputArguments) <<
"RooMCStudy::fitResult: ERROR, no fit result saved for sample "
845 << sampleNum <<
", did you use the 'r; fit option?" << std::endl ;
860 oocoutE(
_fitModel,InputArguments) <<
"RooMCStudy::genData() ERROR, generated data was not saved" << std::endl ;
866 oocoutE(
_fitModel,InputArguments) <<
"RooMCStudy::genData() ERROR, invalid sample number: " << sampleNum << std::endl ;
887 _fitParData->plotOn(frame,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8) ;
913 oocoutE(
_fitModel,InputArguments) <<
"RooMCStudy::plotParam: ERROR: no parameter defined with name " << paramName << std::endl ;
918 return plotParam(*param,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8) ;
996 std::unique_ptr<RooErrorVar> evar{param.
errorVar()};
997 std::unique_ptr<RooAbsArg> evar_rrv{evar->createFundamental()};
1017 const std::string plotVarName = plotVar->
GetName();
1019 ws.
factory(
"Gaussian::pullGauss(" + plotVarName +
", pullMean[0.0, -10.0, 10.0], pullSigma[1.0, 0.1, 5.0])");
1026 pullGauss.
plotOn(&frame) ;
1032 const int sigDigits = 2;
1033 const char * options =
"ELU";
1034 std::stringstream ss;
1035 ss <<
"Fit parameters:\n"
1036 <<
"#mu: " << pullMean.
format(sigDigits, options)
1037 <<
"\n#sigma: " << pullSigma.
format(sigDigits, options);
1101 name.Append(
"pull") ; title.Append(
" Pull") ;
1111 pc.
defineInt(
"fitGauss",
"FitGauss",0,0) ;
1114 bool fitGauss=pc.
getInt(
"fitGauss") ;
1118 const bool success =
_fitParData->plotOn(frame,cmdList) ;
1121 coutF(Plotting) <<
"No pull distribution for the parameter '" << param.
GetName() <<
"'. Check logs for errors." << std::endl;
1180 frameCmdList.
Add(&range) ;
1182 frameCmdList.
Add(&autoRange) ;
1184 frame = param.
frame(frameCmdList) ;
1220 std::unique_ptr<RooErrorVar> evar{param.
errorVar()};
1221 RooPlot* frame = evar->frame(lo,
hi,nbins) ;
1251 name.Append(
"pull") ; title.Append(
" Pull") ;
1259 coutF(Plotting) <<
"No pull distribution for the parameter '" << param.
GetName() <<
"'. Check logs for errors." << std::endl;
ROOT::RRangeCast< T, false, Range_t > static_range_cast(Range_t &&coll)
int Int_t
Signed integer 4 bytes (int).
char * Form(const char *fmt,...)
Formats a string in a circular formatting buffer.
Common abstract base class for objects that represent a value and a "shape" in RooFit.
virtual bool add(const RooAbsArg &var, bool silent=false)
Add the specified argument to list.
void setAttribAll(const Text_t *name, bool value=true)
Set given attribute in each element of the collection by calling each elements setAttribute() functio...
Abstract base class for binned and unbinned datasets.
virtual double sumEntries() const =0
Return effective number of entries in dataset, i.e., sum all weights.
virtual const RooArgSet * get() const
Abstract interface for all probability density functions.
RooPlot * plotOn(RooPlot *frame, const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={}, const RooCmdArg &arg9={}, const RooCmdArg &arg10={}) const override
Helper calling plotOn(RooPlot*, RooLinkedList&) const.
RooFit::OwningPtr< RooFitResult > fitTo(RooAbsData &data, CmdArgs_t const &... cmdArgs)
Fit PDF to given dataset.
virtual RooPlot * paramOn(RooPlot *frame, const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={})
Add a box with parameter values (and errors) to the specified frame.
RooPlot * frame(const RooCmdArg &arg1, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={}) const
Create a new RooPlot on the heap with a drawing frame initialized for this object,...
void setConstant(bool value=true)
Abstract base class for objects that represent a real value and implements functionality common to al...
RooArgList is a container object that can hold multiple RooAbsArg objects.
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Named container for two doubles, two integers two object points and three string pointers that can be...
RooLinkedList const & subArgs() const
Return list of sub-arguments in this RooCmdArg.
Configurable parser for RooCmdArg named arguments.
void defineMutex(const char *head, Args_t &&... tail)
Define arguments where any pair is mutually exclusive.
bool process(const RooCmdArg &arg)
Process given RooCmdArg.
bool hasProcessed(const char *cmdName) const
Return true if RooCmdArg with name 'cmdName' has been processed.
double getDouble(const char *name, double defaultValue=0.0) const
Return double property registered with name 'name'.
bool defineDouble(const char *name, const char *argName, int doubleNum, double defValue=0.0)
Define double property name 'name' mapped to double in slot 'doubleNum' in RooCmdArg with name argNam...
static void stripCmdList(RooLinkedList &cmdList, const char *cmdsToPurge)
Utility function that strips command names listed (comma separated) in cmdsToPurge from cmdList.
RooArgSet * getSet(const char *name, RooArgSet *set=nullptr) const
Return RooArgSet property registered with name 'name'.
bool defineSet(const char *name, const char *argName, int setNum, const RooArgSet *set=nullptr)
Define TObject property name 'name' mapped to object in slot 'setNum' in RooCmdArg with name argName ...
bool ok(bool verbose) const
Return true of parsing was successful.
bool defineObject(const char *name, const char *argName, int setNum, const TObject *obj=nullptr, bool isArray=false)
Define TObject property name 'name' mapped to object in slot 'setNum' in RooCmdArg with name argName ...
bool defineInt(const char *name, const char *argName, int intNum, int defValue=0)
Define integer property name 'name' mapped to integer in slot 'intNum' in RooCmdArg with name argName...
void allowUndefined(bool flag=true)
If flag is true the processing of unrecognized RooCmdArgs is not considered an error.
int getInt(const char *name, int defaultValue=0) const
Return integer property registered with name 'name'.
TObject * getObject(const char *name, TObject *obj=nullptr) const
Return TObject property registered with name 'name'.
Container class to hold unbinned data.
static RooDataSet * read(const char *filename, const RooArgList &variables, const char *opts="", const char *commonPath="", const char *indexCatName=nullptr)
Read data from a text file and create a dataset from it.
RooFitResult is a container class to hold the input and output of a PDF fit to a dataset.
const RooArgList & floatParsFinal() const
Return list of floating parameters after fit.
Int_t status() const
Return MINUIT status code.
double minNll() const
Return minimized -log(L) value.
Collection class for internal use, storing a collection of RooAbsArg pointers in a doubly linked list...
TObject * At(int index) const
Return object stored in sequential position given by index.
virtual void Add(TObject *arg)
TObject * FindObject(const char *name) const override
Return pointer to object with given name.
bool addFitResult(const RooFitResult &fr)
Utility function to add fit result from external fit to this RooMCStudy and process its results throu...
RooPlot * plotParam(const RooRealVar ¶m, const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={})
Plot the distribution of the fitted value of the given parameter on a newly created frame.
RooAbsData * _genSample
Currently generated sample.
RooPlot * makeFrameAndPlotCmd(const RooRealVar ¶m, RooLinkedList &cmdList, bool symRange=false) const
Internal function.
RooArgSet _projDeps
List of projected dependents in fit.
RooArgSet _genParams
List of actual generator parameters.
const RooArgSet * fitParams(Int_t sampleNum) const
Return an argset with the fit parameters for the given sample number.
void calcPulls()
Calculate the pulls for all fit parameters in the fit results data set, and add them to that dataset.
RooArgSet _dependents
List of dependents.
bool _verboseGen
Verbose generation?
std::list< RooAbsMCStudyModule * > _modList
List of additional study modules ;.
std::unique_ptr< RooDataSet > _genParData
RooArgSet _genInitParams
List of original generator parameters.
bool fitSample(RooAbsData *genSample)
Internal method.
RooPlot * plotNLL(const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={})
Plot the distribution of the -log(L) values on a newly created frame.
std::unique_ptr< RooDataSet > _fitParData
bool generate(Int_t nSamples, Int_t nEvtPerSample=0, bool keepGenData=false, const char *asciiFilePat=nullptr)
Generate 'nSamples' samples of 'nEvtPerSample' events.
const RooDataSet * _genProtoData
Generator prototype data set.
bool _canAddFitResults
Allow adding of external fit results?
const RooFitResult * fitResult(Int_t sampleNum) const
Return the RooFitResult of the fit with the given run number.
RooFit::OwningPtr< RooFitResult > doFit(RooAbsData *genSample)
Internal function. Performs actual fit according to specifications.
std::unique_ptr< RooAbsGenContext > _constrGenContext
Generator context for constraints p.d.f.
bool _perExptGenParams
Do generation parameter change per event?
bool _silence
Silent running mode?
RooPlot * plotParamOn(RooPlot *frame, const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={})
Plot the distribution of fitted values of a parameter.
RooArgSet _fitParams
List of actual fit parameters.
RooPlot * plotError(const RooRealVar ¶m, const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={})
Plot the distribution of the fit errors for the specified parameter on a newly created frame.
std::unique_ptr< RooAbsGenContext > _genContext
Generator context.
RooMCStudy(const RooAbsPdf &model, const RooArgSet &observables, const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={})
Construct Monte Carlo Study Manager.
RooFit::OwningPtr< RooFitResult > refit(RooAbsData *genSample=nullptr)
Redo fit on 'current' toy sample, or if genSample is not nullptr do fit on given sample instead.
RooAbsData * genData(Int_t sampleNum) const
Return the given generated dataset.
void RecursiveRemove(TObject *obj) override
If one of the TObject we have a referenced to is deleted, remove the reference.
RooAbsPdf * _genModel
Generator model.
const RooDataSet & fitParDataSet()
Return a RooDataSet containing the post-fit parameters of each toy cycle.
std::unique_ptr< RooRealVar > _nllVar
RooLinkedList _fitOptList
std::unique_ptr< RooAbsPdf > _constrPdf
Constraints p.d.f.
RooArgSet _allDependents
List of generate + prototype dependents.
bool run(bool generate, bool fit, Int_t nSamples, Int_t nEvtPerSample, bool keepGenData, const char *asciiFilePat)
Run engine method.
void resetFitParams()
Reset all fit parameters to the initial model parameters at the time of the RooMCStudy constructor.
RooAbsPdf * _fitModel
Fit model.
bool fit(Int_t nSamples, const char *asciiFilePat)
Fit 'nSamples' datasets, which are read from ASCII files.
bool generateAndFit(Int_t nSamples, Int_t nEvtPerSample=0, bool keepGenData=false, const char *asciiFilePat=nullptr)
Generate and fit 'nSamples' samples of 'nEvtPerSample' events.
RooPlot * plotPull(const RooRealVar ¶m, const RooCmdArg &arg1, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={})
Plot the distribution of pull values for the specified parameter on a newly created frame.
friend class RooAbsMCStudyModule
void addModule(RooAbsMCStudyModule &module)
Insert given RooMCStudy add-on module to the processing chain of this MCStudy object.
RooArgSet _fitInitParams
List of initial values of fit parameters.
std::unique_ptr< RooRealVar > _ngenVar
static RooMsgService & instance()
Return reference to singleton instance.
void setGlobalKillBelow(RooFit::MsgLevel level)
RooFit::MsgLevel globalKillBelow() const
Plot frame and a container for graphics objects within that frame.
RooAbsRealLValue * getPlotVar() const
void createInternalPlotVarClone()
Replaces the pointer to the plot variable with a pointer to a clone of the plot variable that is owne...
Represents the pull of a measurement w.r.t.
static TRandom * randomGenerator()
Return a pointer to a singleton random-number generator implementation.
Variable that can be changed from the outside.
void setBins(Int_t nBins, const char *name=nullptr, bool shared=true)
Create a uniform binning under name 'name' for this variable.
RooErrorVar * errorVar() const
Return a RooAbsRealLValue representing the error associated with this variable.
std::string format(const RooCmdArg &formatArg) const
Format contents of RooRealVar for pretty printing on RooPlot parameter boxes.
Persistable container for RooFit projects.
RooAbsPdf * pdf(RooStringView name) const
Retrieve p.d.f (RooAbsPdf) with given name. A null pointer is returned if not found.
RooFactoryWSTool & factory()
Return instance to factory tool.
RooRealVar * var(RooStringView name) const
Retrieve real-valued variable (RooRealVar) with given name. A null pointer is returned if not found.
bool import(const RooAbsArg &arg, const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={}, const RooCmdArg &arg9={})
Import a RooAbsArg object, e.g.
const char * GetName() const override
Returns name of object.
const char * GetTitle() const override
Returns title of object.
TObject()
TObject constructor.
virtual ULong64_t Poisson(Double_t mean)
Generates a random integer N according to a Poisson law.
RooCmdArg AutoRange(const RooAbsData &data, double marginFactor=0.1)
RooCmdArg Label(const char *str)
RooCmdArg AutoSymRange(const RooAbsData &data, double marginFactor=0.1)
RooCmdArg Bins(Int_t nbin)
RooCmdArg Layout(double xmin, double xmax=0.99, double ymin=0.95)
RooCmdArg Constrain(const RooArgSet ¶ms)
RooCmdArg Save(bool flag=true)
RooCmdArg ExternalConstraints(const RooArgSet &constraintPdfs)
RooCmdArg Minos(bool flag=true)
RooCmdArg PrintLevel(Int_t code)
RooCmdArg ConditionalObservables(Args_t &&... argsOrArgSet)
Create a RooCmdArg to declare conditional observables.
RooCmdArg Range(const char *rangeName, bool adjustNorm=true)
T * OwningPtr
An alias for raw pointers for indicating that the return type of a RooFit function is an owning point...
MsgLevel
Verbosity level for RooMsgService::StreamConfig in RooMsgService.
OwningPtr< T > makeOwningPtr(std::unique_ptr< T > &&ptr)
Internal helper to turn a std::unique_ptr<T> into an OwningPtr.