Belle II Software  release-05-01-25
Btube.cc
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2019 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Sourav Dey, Abi Soffer *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 #include <analysis/dataobjects/Btube.h>
11 
12 using namespace Belle2;
13 
15 {
16  TMatrixFSym temp(3);
17  m_tubematrix.ResizeTo(temp);
18  m_tubematrix = temp;
19 }
21 {
22  TMatrixFSym temp2(3);
23  m_tubecentererrormatrix.ResizeTo(temp2);
25 }
Belle2::Btube::m_tubematrix
TMatrixFSym m_tubematrix
Btube (3x3) matrix.
Definition: Btube.h:107
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::Btube::m_tubecentererrormatrix
TMatrixFSym m_tubecentererrormatrix
Btube Center Error (3x3) matrix.
Definition: Btube.h:108
Belle2::Btube::resetTubeCenterErrorMatrix
void resetTubeCenterErrorMatrix()
resets the tube center error matrix
Definition: Btube.cc:20
Belle2::Btube::resetTubeMatrix
void resetTubeMatrix()
resets the tube matrix
Definition: Btube.cc:14