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