BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
main.cxx File Reference
#include <iostream>
#include "EmcRecEventModel/EmcRecEventModel.h"

Go to the source code of this file.

Functions

int main ()

Function Documentation

◆ main()

int main ( )

Definition at line 5 of file Emc/EmcRecEventModel/test/main.cxx.

5 {
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}