/usr/include/root/RooTrace.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 84 85 86 87 | /*****************************************************************************
* Project: RooFit *
* Package: RooFitCore *
* File: $Id: RooTrace.h,v 1.16 2007/05/11 09:11:30 verkerke 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_TRACE
#define ROO_TRACE
#include <assert.h>
#include <map>
#include "Riosfwd.h"
#include "RooLinkedList.h"
#ifndef __CINT__
#define TRACE_CREATE RooTrace::create(this);
#define TRACE_DESTROY RooTrace::destroy(this);
#endif
class RooTrace {
public:
RooTrace() ;
virtual ~RooTrace() {} ;
static void create(const TObject* obj) ;
static void destroy(const TObject* obj) ;
static void createSpecial(const char* name, int size) ;
static void destroySpecial(const char* name) ;
static void active(Bool_t flag) ;
static void verbose(Bool_t flag) ;
static void dump() ;
static void dump(std::ostream& os, Bool_t sinceMarked=kFALSE) ;
static void mark() ;
static void printObjectCounts() ;
static void callgrind_zero() ;
static void callgrind_dump() ;
static RooTrace& instance() ;
protected:
static RooTrace* _instance ;
void dump3(std::ostream&, Bool_t sinceMarked) ;
void mark3() ;
void printObjectCounts3() ;
void create2(const TObject* obj) ;
void destroy2(const TObject* obj) ;
void create3(const TObject* obj) ;
void destroy3(const TObject* obj) ;
void createSpecial3(const char* name, int size) ;
void destroySpecial3(const char* name) ;
void addPad(const TObject* ref, Bool_t doPad) ;
Bool_t removePad(const TObject* ref) ;
Bool_t _active ;
Bool_t _verbose ;
RooLinkedList _list ;
RooLinkedList _markList ;
std::map<TClass*,int> _objectCount ;
std::map<std::string,int> _specialCount ;
std::map<std::string,int> _specialSize ;
ClassDef(RooTrace,0) // Memory tracer utility for RooFit objects
};
#endif
|