Logo ROOT  
Reference Guide
Loading...
Searching...
No Matches
exec_macro.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_gui
3/// This utility macro executes the macro "macro" given as first argument and save a capture in a png file.
4/// This macro is used by stressGUI to execute and compare the output of the GUI tutorials.
5///
6/// \macro_code
7///
8/// \author Bertrand Bellenot
9
10#include "TSystem.h"
11#include "TString.h"
12#include "TGClient.h"
13#include "TGWindow.h"
14#include "TClass.h"
15#include "THashList.h"
16#include "TROOT.h"
17#include "TInterpreter.h"
18#include "TEnv.h"
19#include "TVirtualX.h"
20#include "TImage.h"
21
22//______________________________________________________________________________
23Int_t exec_macro(const char *macro, Bool_t comp = kFALSE, Bool_t save = kTRUE)
24{
25
26 enum EErrorCodes {
28 kScriptDirNotFound,
29 kCannotRunScript,
30 kNumErrorCodes
31 };
32
33 if (gROOT->IsBatch() || !(gClient))
34 return kCannotRunScript;
35 TString pwd(gSystem->pwd());
36 if (!gSystem->cd(gSystem->GetDirName(macro)))
37 return kScriptDirNotFound;
38 Int_t err = 0;
39 TString cmd(".x ");
40 cmd += gSystem->BaseName(macro);
41 if (comp)
42 cmd += "+";
43 gVirtualX->Sync(1);
44 gROOT->ProcessLine(cmd, &err);
46 return kCannotRunScript;
47 gSystem->cd(pwd);
48
49 UInt_t nMainFrames = 0;
50 TClass *clGMainFrame = TClass::GetClass("TGMainFrame");
51 TGWindow *win = nullptr;
52 TIter iWin(gClient->GetListOfWindows());
53 while ((win = (TGWindow *)iWin())) {
54 const TObject *winGetParent = win->GetParent();
55 Bool_t winIsMapped = kFALSE;
56 if (winGetParent == gClient->GetDefaultRoot())
57 winIsMapped = kTRUE; // win->IsMapped();
58 if (winIsMapped && win->InheritsFrom(clGMainFrame)) {
59 win->MapRaised();
60 if (save) {
62 outfile.ReplaceAll(".C", TString::Format("_%d.png", ++nMainFrames));
63 TImage *img = TImage::Create();
64 win->RaiseWindow();
65 img->FromWindow(win->GetId());
66 img->WriteImage(outfile.Data());
67 delete img;
68 }
69 }
70 }
71 if (!gEnv->GetValue("X11.Sync", 0))
72 gVirtualX->Sync(0);
73 return kSuccess;
74}
int Int_t
Signed integer 4 bytes (int).
Definition RtypesCore.h:59
unsigned int UInt_t
Unsigned integer 4 bytes (unsigned int).
Definition RtypesCore.h:60
bool Bool_t
Boolean (0=false, 1=true) (bool).
Definition RtypesCore.h:77
constexpr Bool_t kFALSE
Definition RtypesCore.h:108
constexpr Bool_t kTRUE
Definition RtypesCore.h:107
externTEnv * gEnv
Definition TEnv.h:170
#define gClient
Definition TGClient.h:157
Double_t err
#define gROOT
Definition TROOT.h:417
externTSystem * gSystem
Definition TSystem.h:582
#define gVirtualX
Definition TVirtualX.h:375
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition TClass.h:84
static TClass * GetClass(const char *name, Bool_t load=kTRUE, Bool_t silent=kFALSE)
Static method returning pointer to TClass of the specified class name.
Definition TClass.cxx:2994
Handle_t GetId() const
Definition TGObject.h:41
ROOT GUI Window base class.
Definition TGWindow.h:23
virtual void MapRaised()
map raised
Definition TGWindow.cxx:174
const TGWindow * GetParent() const
Definition TGWindow.h:83
virtual void RaiseWindow()
raise window
Definition TGWindow.cxx:206
An abstract interface to image processing library.
Definition TImage.h:29
static TImage * Create()
Create an image.
Definition TImage.cxx:34
virtual void FromWindow(Drawable_t, Int_t=0, Int_t=0, UInt_t=0, UInt_t=0)
Definition TImage.h:245
virtual void WriteImage(const char *, EImageFileTypes=TImage::kUnknown)
Definition TImage.h:115
Mother of all ROOT objects.
Definition TObject.h:42
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
Definition TObject.cxx:549
Basic string class.
Definition TString.h:138
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
Definition TString.cxx:2385