Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
plexoos committed Nov 8, 2023
1 parent 3daddc2 commit caa6d6b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mgr/Dyson/Export/AgROOT.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ class StarGeometry {
/// Construct geometry with the specified tag, and return wrapped in a TDataSet
static TDataSet* Construct( const char* name = "%s");
static bool List ( const char* name = "%s");
static void Whitelist( char* name, int value=1 ){ whitelist[std::string(name)]=value; }
static void Whitelist( const char* name, int value=1 );
static void InitAgML ( const char* stacker="StarTGeoStacker");
StarGeometry(){ /* nada */ };
virtual ~StarGeometry(){ /* nada */ }
Expand Down Expand Up @@ -718,6 +718,8 @@ class Geometry : public StarGeometry {
std::map<std::string,int> StarGeometry::whitelist= {{"all",1}};
void StarGeometry::Whitelist(const char* name, int value=1 ){ whitelist[name]=value; }
TDataSet* StarGeometry::Construct( const char* name )
{
std::string tag = name;
Expand Down

0 comments on commit caa6d6b

Please sign in to comment.