StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
scaLxCounts.h
1 #ifndef _SCALXCOUNTS_H_
2 #define _SCALXCOUNTS_H_
3 
4 struct scaLxCounts
5 {
7  int idx_rn; // run number
8  int idx_level; // L1, L2, or L3 triggers
9  int idx_level_inst; // L2 and L3 can have multiple entities...
10  int idx_trigger; // which RC trigger
11  int idx_period; // readout period
13 
14  unsigned int beginTime; // unix time for counting period
15  unsigned int endTime;
16 
17  int numAccepted; // number accepted (PHYS & PS)
18  int numRejected; // number regected (numSeen - numAccepted)
19 
20 };
21 
23 {
24  char type[4]; // DB::
25  int sz; // sizeof(scaLxCounts)
26  unsigned int tm; // unixtime
27  scaLxCounts rec;
28 };
29 #endif