#include <iostream>
#include "EmcRecEventModel/EmcRecEventModel.h"
Go to the source code of this file.
◆ 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}