BOSS 7.0.3
BESIII Offline Software System
Loading...
Searching...
No Matches
Reconstruction/MdcPatRec/MdcData/MdcData-00-01-27/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 { badWaveform = 0x200,
25 badPedestal = 0x400,
26 clippedWaveform = 0x800,
27 rawDataAppended = 0x1000,
28 unstablePedestal = 0x2000,
29 chargeCorrected = 0x4000 };
30
31 enum { allFlags = 0x7E00,
32 flagShift = 9 };
33
34 ~MdcDigiStatus(){;} // Public to allow usage of class namespace
35
36private:
37 // Make constructor private to prevent instantiation
38 MdcDigiStatus(){;}
39};
40
41#endif /* MDCDIGISTATUS_H */