Belle II Software  release-05-01-25
geometry.cc
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2015 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Milkail Remnev, Dmitry Matvienko *
7  * *
8  * This software is provided "as is" without any warranty. *
9  ***************************************************************************/
10 //This module
11 #include <ecl/modules/eclDisplay/geometry.h>
12 
13 using namespace Belle2::ECLDisplayUtility;
14 
15 int do_energy_count = 1;
16 
17 void Belle2::ECLDisplayUtility::SetMode(int i)
18 {
19  do_energy_count = i;
20 }
21 int Belle2::ECLDisplayUtility::GetMode()
22 {
23  return do_energy_count;
24 }