Belle II Software  release-05-01-25
UncertainSZLine.cc
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2014 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Oliver Frost *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 #include <tracking/trackFindingCDC/geometry/UncertainSZLine.h>
11 
12 #include <tracking/trackFindingCDC/geometry/SZLine.h>
13 
14 #include <ostream>
15 
16 using namespace Belle2;
17 using namespace TrackFindingCDC;
18 
19 std::ostream& TrackFindingCDC::operator<<(std::ostream& output, const UncertainSZLine& uncertainSZLine)
20 {
21  return output << "UncertainSZLine("
22  << "tanL=" << uncertainSZLine->slope() << ","
23  << "z0=" << uncertainSZLine->intercept() << ")";
24 }
Belle2::operator<<
std::ostream & operator<<(std::ostream &output, const IntervalOfValidity &iov)
Definition: IntervalOfValidity.cc:196
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19