Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/TEveMacro.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // @(#)root/eve:$Id$
0002 // Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TEveMacro
0013 #define ROOT_TEveMacro
0014 
0015 #include "TEveUtil.h"
0016 
0017 #include "TMacro.h"
0018 
0019 class TEveMacro : public TMacro
0020 {
0021 protected:
0022 
0023 public:
0024    TEveMacro();
0025    TEveMacro(const TEveMacro&);
0026    TEveMacro(const char* name);
0027    ~TEveMacro() override {}
0028 
0029    Longptr_t Exec(const char* params = "0", Int_t* error = nullptr) override;
0030 
0031    void ResetRoot();
0032 
0033    ClassDefOverride(TEveMacro, 1); // TMacro wrapper (attempting to fix issues with different macro loading and execution schemes).
0034 };
0035 
0036 #endif