Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
camera_restore.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_eve
3///
4/// \macro_code
5///
6/// \author Matevz Tadel
7
8void camera_restore(const char* fname, int mode = 0)
9{
11 writeCurrentCamera(fname);
12}
13
14void writeCurrentCamera(const char* fname)
15{
17 TFile* f = TFile::Open(fname, "RECREATE");
18 c.Write();
19 f->Close();
20}
21
22
23void readCurrentCamera(const char* fname)
24{
26 TFile* f = TFile::Open(fname, "READ");
27 if (!f)
28 return;
29
30 if (f->GetKey(c.ClassName())) {
31 f->GetKey(c.ClassName())->Read(&c);
32 c.IncTimeStamp();
34 }
35}
#define f(i)
Definition RSha256.hxx:104
#define c(i)
Definition RSha256.hxx:101
R__EXTERN TEveManager * gEve
TGLViewer * GetDefaultGLViewer() const
Get TGLViewer of the default TEveViewer.
static TEveManager * Create(Bool_t map_window=kTRUE, Option_t *opt="FIV")
If global TEveManager* gEve is not set initialize it.
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
Definition TFile.h:54
static TFile * Open(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault, Int_t netopt=0)
Create / open a file.
Definition TFile.cxx:3997
Abstract base camera class - concrete classes for orthographic and perspective cameras derive from it...
Definition TGLCamera.h:44
void RequestDraw(Short_t LOD=TGLRnrCtx::kLODMed)
Post request for redraw of viewer at level of detail 'LOD' Request is directed via cross thread gVirt...
TGLCamera & CurrentCamera() const
Definition TGLViewer.h:267