CbmRoot
CbmL1TrdHit.h
Go to the documentation of this file.
1 /*
2  *====================================================================
3  *
4  * CBM Level 1 Reconstruction
5  *
6  * Authors: I.Kisel, S.Gorbunov
7  *
8  * e-mail : ikisel@kip.uni-heidelberg.de
9  *
10  *====================================================================
11  *
12  * TRD hit description for L1
13  *
14  *====================================================================
15  */
16 
17 #ifndef _CbmL1TrdHit_h_
18 #define _CbmL1TrdHit_h_
19 
20 #include "CbmKFHit.h"
21 
22 struct CbmL1TrdHit //:public CbmL1KFUMeasurement
23 {
24 
25  // hit information
26 
27  int iStation; // TRD station
28 
29  // Monte Carlo information
30 
31  int MC_Point;
32 
33  static bool compareStation(const CbmL1TrdHit& a, const CbmL1TrdHit& b) {
34  return (a.iStation < b.iStation);
35  }
36 };
37 
38 #endif
CbmL1TrdHit::compareStation
static bool compareStation(const CbmL1TrdHit &a, const CbmL1TrdHit &b)
Definition: CbmL1TrdHit.h:33
CbmL1TrdHit::iStation
int iStation
Definition: CbmL1TrdHit.h:27
CbmKFHit.h
CbmL1TrdHit
Definition: CbmL1TrdHit.h:23
CbmL1TrdHit::MC_Point
int MC_Point
Definition: CbmL1TrdHit.h:31