RAIDA  1.9.0
Naming.h
1 // -*- C++ -*-
2 #ifndef AIDA_NAMING_H
3 #define AIDA_NAMING_H 1
4 
5 #include <iostream>
6 #include <string>
7 #include <vector>
8 
16 using namespace std;
17 
18 namespace AIDA {
19 class Naming {
20 
21 public:
22 
23  static string binEntry(const string & name) ;
24 
25  static string binContents(const string & name) ;
26 
27  static string binMeanX(const string & name) ;
28 
29  static string binMeanY(const string & name) ;
30 
31  static string binMeanZ(const string & name) ;
32 
33  static string titleBinEntry(const string & name) ;
34 
35  static string titleBinContents(const string & name) ;
36 
37  static string titleBinMeanX(const string & name) ;
38 
39  static string titleBinMeanY(const string & name) ;
40 
41  static string titleBinMeanZ(const string & name) ;
42 
43 protected:
44 
45  static string mergeNames(const string & n1,const string & n2) ;
46 
47 };
48 } // namespace AIDA
49 #endif /* ifndef AIDA_Naming_H */
Definition: Naming.h:19