BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
testGeom.cxx
Go to the documentation of this file.
1#include <iostream>
2
3#include "EmcGeneralClass/EmcStructure.h"
4using namespace std;
5
6int main() {
7
8 int numberOfXtalsRing;
9
10 EmcStructure* theEmcStruc = new EmcStructure();
11 theEmcStruc->setEmcStruc();
12
13 // number Of Theta Rings
14 cout << "ind"
15 << " "
16 << "theEmcStruc->getTheta(ind)"
17 << " "
18 << "theEmcStruc->getPhi(ind)" << endl;
19
20 for ( int ind = 0; ind < 6240; ind++ )
21 {
22
23 cout << ind << " " << theEmcStruc->getTheta( ind ) << " " << theEmcStruc->getPhi( ind )
24 << " " << theEmcStruc->getPartId( ind ) << endl;
25 }
26 delete theEmcStruc;
27 return 0;
28}
int main()
Definition testGeom.cxx:6