Belle II Software development
geometry.cc
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//This module
9#include <ecl/modules/eclDisplay/geometry.h>
10
11using namespace Belle2::ECLDisplayUtility;
12
13int do_energy_count = 1;
14
16{
17 do_energy_count = i;
18}
20{
21 return do_energy_count;
22}
int GetMode()
Returns current displayed mode (0 shows event count, 1 shows total energy)
Definition: geometry.cc:19
void SetMode(int i)
Changes between display of events (0) and energy (1).
Definition: geometry.cc:15