Belle II Software  release-06-00-14
TOPGeoModuleDisplacement.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 
9 #include <top/dbobjects/TOPGeoModuleDisplacement.h>
10 #include <iostream>
11 
12 using namespace std;
13 
14 namespace Belle2 {
20  void TOPGeoModuleDisplacement::print(const std::string& title) const
21  {
22  TOPGeoBase::print(title);
23  cout << " translation vector: (" << getX() << ", "
24  << getY() << ", " << getZ() << ")" << " " << s_unitName << endl;
25  cout << " rotation angles: ";
26  cout << getAlpha() << " ";
27  cout << getBeta() << " ";
28  cout << getGamma() << " ";
29  cout << endl;
30  }
31 
33 } // end Belle2 namespace
Abstract base class for different kinds of events.