Belle II Software  release-05-02-19
RawDataTypes.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2016 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Marko Staric *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 
13 namespace Belle2 {
18  namespace TOP {
19 
24  enum class RawDataType {
25  c_Type0Ver1 = 0x0001,
26  c_Type1Ver1 = 0x0101,
27  c_Type2Ver1 = 0x0201,
28  c_Type3Ver1 = 0x0301,
29  c_Type0Ver16 = 0x0010,
30  c_Type1Ver16 = 0x0110,
31  c_Type2Ver16 = 0x0210,
32  c_Type3Ver16 = 0x0310,
33  c_ProductionDebug01 = 0x0401,
34  c_ProductionDebug02 = 0x0402,
35  c_Draft = 0xFF00
36  };
37 
42  static const RawDataType membersRawDataType[] = {RawDataType::c_Type0Ver1,
43  RawDataType::c_Type0Ver1,
44  RawDataType::c_Type1Ver1,
45  RawDataType::c_Type2Ver1,
46  RawDataType::c_Type3Ver1,
47  RawDataType::c_Type0Ver16,
48  RawDataType::c_Type1Ver16,
49  RawDataType::c_Type2Ver16,
50  RawDataType::c_Type3Ver16,
51  RawDataType::c_ProductionDebug01,
52  RawDataType::c_ProductionDebug02,
53  RawDataType::c_Draft
54  };
55 
56  }
58 }
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19