BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Emc/EmcRecEventModel/test/main.cxx
Go to the documentation of this file.
1#include <iostream>
2
3#include "EmcRecEventModel/EmcRecEventModel.h"
4
5int main() {
6 EmcRecHit aHit;
7
8 aHit.Dump();
9
10 cout << aHit << endl;
11
12 EmcRecDigit aDigit;
13 cout << aDigit << endl;
14
15 EmcRecCluster aCluster;
16 aCluster.Insert( aHit );
17 cout << aCluster << endl;
18
19 EmcRecFraction aFraction;
20 cout << aFraction << endl;
21
22 EmcRecShower aShower;
23 aShower.Insert( aFraction );
24
25 cout << aShower << endl;
26}