EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4HitDefs.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4HitDefs.cc
1 #include "PHG4HitDefs.h"
2 
3 #include <tr1/functional>
4 
5 namespace PHG4HitDefs
6 {
7 
8  int get_volume_id(const std::string & nodename)
9  {
10  return std::tr1::hash<std::string>()(nodename);
11  }
12 
13 }
14 
15