Belle II Software  release-05-01-25
EWireNeighborKind.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2014 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Oliver Frost *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 #pragma once
11 
12 namespace Belle2 {
18  namespace TrackFindingCDC {
19 
21  namespace NWireNeighborKind {
23  enum class EWireNeighborKind : signed short {
24 
26  c_None = 0,
27 
29  c_CWOut = 1,
30 
32  c_CW = 3,
33 
35  c_CWIn = 5,
36 
38  c_CCWIn = 7,
39 
41  c_CCW = 9,
42 
44  c_CCWOut = 11,
45  };
46  }
47 
49  using EWireNeighborKind = NWireNeighborKind::EWireNeighborKind;
50 
51  }
52 
54 }
55 
Belle2::TrackFindingCDC::NWireNeighborKind::EWireNeighborKind
EWireNeighborKind
Type for the neighbor relationship from in wire to an other, imagined in the clock.
Definition: EWireNeighborKind.h:31
Belle2::TrackFindingCDC::NWireNeighborKind::EWireNeighborKind::c_CCW
@ c_CCW
Constant for counterclockwise.
Belle2::TrackFindingCDC::NWireNeighborKind::EWireNeighborKind::c_CCWOut
@ c_CCWOut
Constant for counterclockwise outwards.
Belle2::TrackFindingCDC::NWireNeighborKind::EWireNeighborKind::c_CCWIn
@ c_CCWIn
Constant for counterclockwise inwards.
Belle2::TrackFindingCDC::NWireNeighborKind::EWireNeighborKind::c_CWIn
@ c_CWIn
Constant for clockwise inwards.
Belle2::TrackFindingCDC::NWireNeighborKind::EWireNeighborKind::c_CWOut
@ c_CWOut
Constant for clockwise outwards.
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TrackFindingCDC::NWireNeighborKind::EWireNeighborKind::c_None
@ c_None
Constant to indicate that two wires are not neighbors.
Belle2::TrackFindingCDC::NWireNeighborKind::EWireNeighborKind::c_CW
@ c_CW
Constant for clockwise.