Belle II Software development
RawDataTypes.h
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8
9#pragma once
10
11namespace Belle2 {
16 namespace TOP {
17
22 enum class RawDataType {
23 c_Type0Ver1 = 0x0001,
24 c_Type1Ver1 = 0x0101,
25 c_Type2Ver1 = 0x0201,
26 c_Type3Ver1 = 0x0301,
27 c_Type0Ver16 = 0x0010,
28 c_Type1Ver16 = 0x0110,
29 c_Type2Ver16 = 0x0210,
30 c_Type3Ver16 = 0x0310,
31 c_ProductionDebug01 = 0x0401,
32 c_ProductionDebug02 = 0x0402,
33 c_Draft = 0xFF00
34 };
35
40 static const RawDataType membersRawDataType[] = {RawDataType::c_Type0Ver1,
41 RawDataType::c_Type0Ver1,
42 RawDataType::c_Type1Ver1,
43 RawDataType::c_Type2Ver1,
44 RawDataType::c_Type3Ver1,
45 RawDataType::c_Type0Ver16,
46 RawDataType::c_Type1Ver16,
47 RawDataType::c_Type2Ver16,
48 RawDataType::c_Type3Ver16,
49 RawDataType::c_ProductionDebug01,
50 RawDataType::c_ProductionDebug02,
51 RawDataType::c_Draft
52 };
53
54 }
56}
Abstract base class for different kinds of events.