source: trunk/examples/novice/gemc/src/MBankdefs.h@ 1190

Last change on this file since 1190 was 807, checked in by garnier, 17 years ago

update

File size: 568 bytes
Line 
1
2
3
4
5
6
7#ifndef MBankdefs_H
8#define MBankdefs_H 1
9
10// %%%%%%%%%%%%%
11// gemc headers
12// %%%%%%%%%%%%%
13#include "Clas12_HitProcess_MapRegister.h"
14#include "usage.h"
15
16// %%%%%%%%%%%
17// C++ headers
18// %%%%%%%%%%%
19#include <sstream>
20using namespace std;
21
22class MBank
23{
24 public:
25 MBank(){;}
26 ~MBank(){;}
27
28 public:
29 vector<string> name;
30 vector<int> id;
31 vector<int> type;
32 vector<int> activated;
33 vector<string> description;
34
35};
36
37map<string, MBank> read_banks(gemc_opts, map<string, MPHB_Factory>);
38
39
40#endif
Note: See TracBrowser for help on using the repository browser.