00001
00002
00003
00004
00005
00006
00007
00008 #ifndef L2_EXAMPLE_RESULT_08_H
00009 #define L2_EXAMPLE_RESULT_08_H
00010
00011 struct L2exampleResult08 {
00012 enum {mySizeChar=8};
00013 unsigned char decision;
00014 unsigned char numberOfL2Clust;
00015 unsigned short kTicksCompute;
00016 float clusterET;
00017 };
00018
00019
00020 inline void
00021 L2exampleResult2008_print(L2exampleResult08 *p){
00022 if(p==0) {printf("print L2exampleResults08 - NULL pointer ????\n"); return;}
00023 printf("print L2exampleResults08: decison=%d noClust=%d kTicks/Compute=%d clustET=%.3f GeV\n", p->decision, p->numberOfL2Clust,p->kTicksCompute,p->clusterET);
00024
00025 };
00026
00027
00028
00029 #endif