]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TEvtGen/EvtGen/EvtGenBase/EvtSymTable.hh
Converting TEvtGen to native cmake
[u/mrichter/AliRoot.git] / TEvtGen / EvtGen / EvtGenBase / EvtSymTable.hh
diff --git a/TEvtGen/EvtGen/EvtGenBase/EvtSymTable.hh b/TEvtGen/EvtGen/EvtGenBase/EvtSymTable.hh
new file mode 100644 (file)
index 0000000..71b7dff
--- /dev/null
@@ -0,0 +1,51 @@
+//--------------------------------------------------------------------------
+//
+// Environment:
+//      This software is part of the EvtGen package developed jointly
+//      for the BaBar and CLEO collaborations.  If you use all or part
+//      of it, please give an appropriate acknowledgement.
+//
+// Copyright Information: See EvtGen/COPYRIGHT
+//      Copyright (C) 1998      Caltech, UCSB
+//
+// Module: EvtGen/EvtSymTable.hh
+//
+// Description: Class to hold the symbols that are defined
+//              in the DECAY files.
+//
+// Modification history:
+//
+//    RYD     May 8, 1998         Module created
+//
+//------------------------------------------------------------------------
+
+#ifndef EVTSYMTABLE_HH
+#define EVTSYMTABLE_HH
+
+#include <string>
+#include <map>
+
+class EvtSymTable {
+
+public:
+
+  EvtSymTable(); 
+  ~EvtSymTable();
+
+  static void define(const std::string& name,std::string d);
+
+  static std::string get(const std::string& name,int &ierr);
+
+private:
+
+  static std::map<std::string,std::string> _symMap;
+  
+}; 
+
+#endif
+
+
+
+
+
+