BOSS 7.0.2
BESIII Offline Software System
Loading...
Searching...
No Matches
Mdc/MdcTables/MdcTables-00-00-11/test/Test.cxx
Go to the documentation of this file.
1#include <iostream>
2
3#include "MdcTables/MdcTables.h"
4#include "MdcTables/TrkTables.h"
5#include "MdcTables/HepevtTables.h"
6#include "MdcTables/MdstTables.h"
7
8int main(){
9 MdcRec_wirhit fRecWirHit;
10 cout <<"MdcRec_wirhit:"<<endl;
11 fRecWirHit.id=2;
12 fRecWirHit.ddl=1.2;
13 cout<<"id:"<<fRecWirHit.id<<endl;
14 cout<<"ddl:"<<fRecWirHit.ddl<<endl;
15 cout<<"ddr:"<<fRecWirHit.ddr<<endl;
16
17 MdcTrk fMdcTrk;
18 cout <<"MdcTrk:"<<endl;
19 // fMdcTrk.last[0]=5;
20 // cout<<"id:"<<fMdcTrk.id<<endl;
21 // cout<<"last[0]:"<<fMdcTrk.last[0]<<endl;
22 cout<<"last[1]:"<<fMdcTrk.last[1]<<endl;
23
24 return 1;
25}
26