#ifndef ROOT_TMEMSTAT
#define ROOT_TMEMSTAT
#include <memory>
#include <vector>
#include <set>
#include "TString.h"
#include "TObjArray.h"
#include "TFile.h"
#include "TObjString.h"
class TArrayI;
class TBits;
class TTree;
class TMemStatManager;
class TGraph;
class TMemStatCodeInfo;
class TMemStatInfoStamp;
typedef std::vector<UInt_t> UIntVector_t;
typedef std::vector<Int_t> IntVector_t;
typedef std::auto_ptr<TFile> TFilePtr;
class TMemStat: public TObject
{
public:
typedef std::set<std::string> Selection_t;
enum ESelection { kFunction, kLibrary };
enum StatType { kTotalAllocCount = 0, kAllocCount = 2, kTotalAllocSize = 1, kAllocSize = 3, kUndef = 4};
enum StampType { kCurrent = 0, kMaxSize = 1, kMaxCount = 2};
enum OperType { kAND = 0, kOR = 1, kNOT = 2};
private:
StatType fSortStat;
StampType fSortStamp;
UInt_t fSortDeep;
UInt_t fStackDeep;
UInt_t fMaxStringLength;
Int_t fSelected;
Bool_t fIsActive;
Bool_t fOrder;
UIntVector_t fSelectedCodeIndex;
UIntVector_t fSelectedStackIndex;
IntVector_t fArrayIndexes;
TBits* fSelectedCodeBitmap;
TBits* fSelectedStackBitmap;
TFilePtr fFile;
TObjArray* fStampArray;
TObjArray* fArray;
TObjArray* fArrayGraphics;
TObjArray fDisablePrintLib;
TObjArray fDisablePrintCode;
TString fOption;
TTree* fTree;
TTree* fTreeSys;
TMemStatInfoStamp* fStackSummary;
TMemStatManager* fManager;
private :
Int_t DistancetoPrimitive(Int_t px, Int_t py);
Bool_t GetMemStat(const char * fname, Int_t entry);
Bool_t EnabledCode(const TMemStatCodeInfo &info) const;
void ExecuteEvent(Int_t event, Int_t px, Int_t py);
void MakeCodeArray();
TGraph* MakeGraph(StatType statType, Int_t id, Int_t type, Double_t &xmax, Double_t &ymax);
TObjArray* MakeGraphCode(StatType statType, Int_t nentries);
TObjArray* MakeGraphStack(StatType statType, Int_t nentries);
void MakeStampsText();
void MakeStackArray();
void ProcessOption(Option_t *option);
void RefreshSelect();
public:
TMemStat(Option_t* option = "read");
virtual ~TMemStat();
public:
void AddStamp(const char*stampName);
void Draw(Option_t *option = "");
void GetFillSelection(Selection_t *_Container, ESelection _Selection) const;
const Option_t* GetOption() const {
return fOption.Data();
}
TObjArray* GetStampList();
UInt_t GetStackDeep() const
{
return fStackDeep;
}
UInt_t GetSortDeep() const
{
return fSortDeep;
}
UInt_t GetMaxStringLength() const
{
return fMaxStringLength;
}
void MakeReport(const char * lib = "", const char *fun = "",
Option_t* option = NULL, const char *fileName = "");
void MakeHisMemoryStamp(Int_t topDiff);
void MakeHisMemoryTime();
void Paint(Option_t *option = "");
void PrintCode(Int_t nentries = 10) const;
void PrintCodeWithID(UInt_t index) const;
void PrintStack(Int_t nentries = 10, UInt_t deep = 1) const;
void PrintStackWithID(UInt_t _id, UInt_t _deep = 0) const;
void Report(Option_t* option = "");
void ResetSelection();
void SetAutoStamp(Int_t autoStampSize = 2000000, Int_t autoStampAlloc = 200000);
void SetCurrentStamp(const char *stampName);
void SetCurrentStamp(const TObjString &stampName);
void SetSortStat(StatType NewVal)
{
fSortStat = NewVal;
}
void SetSortStamp(StampType NewVal)
{
fSortStamp= NewVal;
}
void SetStackDeep(UInt_t NewVal)
{
fStackDeep = NewVal;
}
void SetSortDeep(UInt_t NewVal)
{
fSortDeep = NewVal;
}
void SelectCode(const char *contlib = "",
const char *contfunction = "", OperType oType = kOR);
void SelectStack(OperType oType = kOR);
void SortCode(StatType sortType, StampType stampType);
void SortStack(StatType sortType, StampType stampType);
ClassDef(TMemStat, 0)
};
#endif
Last change: Fri Oct 31 14:49:42 2008
Last generated: 2008-10-31 14:49
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.