BOSS 7.1.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Emc/EmcRecEventModel/EmcRecEventModel-01-01-18/test/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 7 of file Emc/EmcRecEventModel/EmcRecEventModel-01-01-18/test/main.cxx.

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}