/usr/include/root/TPyROOTApplication.h is in libroot-bindings-python-dev 5.34.19+dfsg-1.2.
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 | // Author: Wim Lavrijsen February 2006
#ifndef ROOT_TPyROOTApplication
#define ROOT_TPyROOTApplication
//////////////////////////////////////////////////////////////////////////////
// //
// TPyROOTApplication //
// //
// Setup interactive application for python. //
// //
//////////////////////////////////////////////////////////////////////////////
// ROOT
#ifndef ROOT_TApplication
#include "TApplication.h"
#endif
namespace PyROOT {
class TPyROOTApplication : public TApplication {
public:
static Bool_t CreatePyROOTApplication( Bool_t bLoadLibs = kTRUE );
static Bool_t InitROOTGlobals();
static Bool_t InitCINTMessageCallback();
static Bool_t InitROOTMessageCallback();
public:
TPyROOTApplication(
const char* acn, Int_t* argc, char** argv, Bool_t bLoadLibs = kTRUE );
virtual ~TPyROOTApplication() { }
ClassDef(TPyROOTApplication,0) //Setup interactive application
};
} // namespace PyROOT
#endif
|