Belle II Software  release-05-01-25
STRGeometryPar.cc
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2016 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Alexandre BEAULIEU *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #include <structure/dbobjects/STRGeometryPar.h>
12 
13 using namespace Belle2;
14 
16 {
17  // Set geometry version
18  m_Version = 0;
19 
20  // Initialize values (to fix cppcheck warnings)
21  for (int i = 0; i < NECLSHIELDS; i++) {
22  m_NLayers[i] = 0;
23  }
24  for (int i = 0; i < NPOLEPIECES; i++) {
25  m_PoleNPlanes[i] = 0;
26  }
27 
28 
29 }
30 
32 {
33 }
34 
35 
36 
Belle2::STRGeometryPar::NECLSHIELDS
static const int NECLSHIELDS
Number of ECL shields in Belle2.
Definition: STRGeometryPar.h:254
Belle2::STRGeometryPar::m_NLayers
int m_NLayers[NECLSHIELDS]
Number of layers in the shield.
Definition: STRGeometryPar.h:290
Belle2::STRGeometryPar::STRGeometryPar
STRGeometryPar()
Default constructor.
Definition: STRGeometryPar.cc:15
Belle2::STRGeometryPar::m_Version
int m_Version
Geometry version.
Definition: STRGeometryPar.h:283
Belle2::STRGeometryPar::m_PoleNPlanes
int m_PoleNPlanes[NPOLEPIECES]
Number of polycone planes in each pole piece.
Definition: STRGeometryPar.h:316
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::STRGeometryPar::NPOLEPIECES
static const int NPOLEPIECES
Number of pole pieces in Belle2.
Definition: STRGeometryPar.h:261
Belle2::STRGeometryPar::~STRGeometryPar
~STRGeometryPar()
Destructor.
Definition: STRGeometryPar.cc:31