StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
L2exampleResult08.h
1 //
2 // Jan Balewski ,MIT
3 // Example container for results from L2-algo
4 //
5 // L2Result must have a size N*4 char,
6 //
7 
8 #ifndef L2_EXAMPLE_RESULT_08_H
9 #define L2_EXAMPLE_RESULT_08_H
10 
12  enum {mySizeChar=8};// negotiate size w/ John before extending
13  unsigned char decision;
14  unsigned char numberOfL2Clust;
15  unsigned short kTicksCompute;
16  float clusterET;
17 };
18 
19 //...................................
20 inline void
21 L2exampleResult2008_print(L2exampleResult08 *p){
22  if(p==0) {printf("print L2exampleResults08 - NULL pointer ????\n"); return;}
23  printf("print L2exampleResults08: decison=%d noClust=%d kTicks/Compute=%d clustET=%.3f GeV\n", p->decision, p->numberOfL2Clust,p->kTicksCompute,p->clusterET);
24 
25 };
26 
27 
28 
29 #endif