Class Reference for E1039 Core & Analysis Software
PHG4HitDefs.h
Go to the documentation of this file.
1 #ifndef PHG4HITDEFS_H
2 #define PHG4HITDEFS_H
3 
4 #include <string>
5 
6 namespace PHG4HitDefs
7 {
8  typedef unsigned int keytype;
9  static const unsigned int keybits = 16;
10  static const unsigned int hit_idbits = sizeof(keytype)*8-keybits;
11  static const keytype detid_mask = 0xffff0000;
12  static const keytype hitid_mask = 0x0000ffff;
13 
16  int get_volume_id(const std::string & nodename);
17 
18 }
19 
20 #endif
21 
22 
static const keytype hitid_mask
Definition: PHG4HitDefs.h:12
static const unsigned int hit_idbits
Definition: PHG4HitDefs.h:10
static const unsigned int keybits
Definition: PHG4HitDefs.h:9
int get_volume_id(const std::string &nodename)
Definition: PHG4HitDefs.cc:9
static const keytype detid_mask
Definition: PHG4HitDefs.h:11
unsigned int keytype
Definition: PHG4HitDefs.h:8