/usr/include/root/RooResolutionModel.h is in libroot-roofit-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | /*****************************************************************************
* Project: RooFit *
* Package: RooFitCore *
* File: $Id: RooResolutionModel.h,v 1.26 2007/05/14 18:37:46 wouter Exp $
* Authors: *
* WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
* DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
* *
* Copyright (c) 2000-2005, Regents of the University of California *
* and Stanford University. All rights reserved. *
* *
* Redistribution and use in source and binary forms, *
* with or without modification, are permitted according to the terms *
* listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
*****************************************************************************/
#ifndef ROO_RESOLUTION_MODEL
#define ROO_RESOLUTION_MODEL
#include "RooAbsPdf.h"
#include "RooRealProxy.h"
#include "RooRealVar.h"
#include "RooFormulaVar.h"
class RooAbsAnaConvPdf;
class RooResolutionModel : public RooAbsPdf {
public:
// Constructors, assignment etc
inline RooResolutionModel() : _basis(0) { }
RooResolutionModel(const char *name, const char *title, RooRealVar& x) ;
RooResolutionModel(const RooResolutionModel& other, const char* name=0);
virtual TObject* clone(const char* newname) const = 0 ;
virtual ~RooResolutionModel();
virtual RooAbsGenContext* modelGenContext(const RooAbsAnaConvPdf&, const RooArgSet&,
const RooDataSet*, const RooArgSet*,
Bool_t) const { return 0; }
Double_t getValV(const RooArgSet* nset=0) const ;
virtual RooResolutionModel* convolution(RooFormulaVar* basis, RooAbsArg* owner) const ;
RooRealVar& convVar() const ;
const RooRealVar& basisConvVar() const ;
inline Bool_t isBasisSupported(const char* name) const { return basisCode(name)?kTRUE:kFALSE ; }
virtual Int_t basisCode(const char* name) const = 0 ;
virtual void normLeafServerList(RooArgSet& list) const ;
Double_t getNorm(const RooArgSet* nset=0) const ;
inline const RooFormulaVar& basis() const { return _basis?*_basis:*identity() ; }
Bool_t isConvolved() { return _basis ? kTRUE : kFALSE ; }
virtual void printMultiline(std::ostream& os, Int_t content, Bool_t verbose=kFALSE, TString indent="") const ;
static void cleanup() ;
static RooFormulaVar* identity() ;
protected:
static RooFormulaVar* _identity ; // Identity basis function pointe
friend class RooConvGenContext ;
friend class RooAddModel ;
RooRealProxy x ; // Dependent/convolution variable
virtual Bool_t redirectServersHook(const RooAbsCollection& newServerList, Bool_t mustReplaceAll, Bool_t nameChange, Bool_t isRecursive) ;
virtual void changeBasis(RooFormulaVar* basis) ;
Bool_t traceEvalHook(Double_t value) const ;
friend class RooAbsAnaConvPdf ;
Int_t _basisCode ; // Identifier code for selected basis function
RooFormulaVar* _basis ; // Basis function convolved with this resolution model
Bool_t _ownBasis ; // Flag indicating ownership of _basis
ClassDef(RooResolutionModel,1) // Abstract Resolution Model
};
#endif
|