BOSS 7.0.4
BESIII Offline Software System
Loading...
Searching...
No Matches
EmcRecCrystal.cxx
Go to the documentation of this file.
1#include "EmcRecGeoSvc/EmcRecCrystal.h"
2
3ostream& operator<<(ostream & os,const EmcRecCrystal& aCrystal)
4{
5 int i;
6 if(aCrystal.Type()==EmcRecCrystal::SixPlane()) {
7 for(i=0;i<8;i++){
8 if(i<7) {
9 os<<aCrystal.Get(i)<<endl;
10 } else {
11 os<<aCrystal.Get(i);
12 }
13 }
14 }
15 if(aCrystal.Type()==EmcRecCrystal::SevenPlane()) {
16 for(i=0;i<10;i++){
17 if(i<9) {
18 os<<aCrystal.Get(i)<<endl;
19 } else {
20 os<<aCrystal.Get(i);
21 }
22 }
23 }
24 return os;
25}
ostream & operator<<(ostream &os, const EmcRecCrystal &aCrystal)