BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Reconstruction/MdcPatRec/MdcData/include/MdcData/MdcDigiStatus.h
Go to the documentation of this file.
1//
2// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3// Package:
4// MdcData
5// $Id: MdcDigiStatus.h,v 1.1.1.1 2005/04/21 06:04:41 zhangy Exp $
6//
7// Abstract:
8// Defines the online status flags
9//
10//
11// Author:
12// R. Stroili INFN & Padova University
13//
14// Creation Date:
15// November 20, 2000
16//
17// ----------------------------------------------------------------------------
18//
19#ifndef MDCDIGISTATUS_H
20#define MDCDIGISTATUS_H
21
22class MdcDigiStatus {
23public:
24 enum {
25 badWaveform = 0x200,
26 badPedestal = 0x400,
27 clippedWaveform = 0x800,
28 rawDataAppended = 0x1000,
29 unstablePedestal = 0x2000,
30 chargeCorrected = 0x4000
31 };
32
33 enum { allFlags = 0x7E00, flagShift = 9 };
34
35 ~MdcDigiStatus() { ; } // Public to allow usage of class namespace
36
37private:
38 // Make constructor private to prevent instantiation
39 MdcDigiStatus() { ; }
40};
41
42#endif /* MDCDIGISTATUS_H */