ATLAS Offline Software
Loading...
Searching...
No Matches
RtFullInfo.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7#include <cstdio>
8
9namespace MuonCalib {
10
11 std::istream &operator>>(std::istream &is, RtFullInfo &data) { return data.read(is); }
12
13 std::ostream &operator<<(std::ostream &os, const RtFullInfo &data) { return data.write(os); }
14
15 void RtFullInfo::write_forDB(FILE *frt) const {
16 fprintf(frt, "%d,%f,%f,%f,%f,%f,%d,%d,%d,%d,%d,%f,%d\n", m_numSeg, m_meanAng, m_rmsAng, 0., 0., m_convEst, 0, 0, 0, 0, 0, m_qualEst,
17 0);
18 return;
19 }
20
21} // namespace MuonCalib
char data[hepevt_bytes_allocation_ATLAS]
Definition HepEvt.cxx:11
addiitonal information used in validation of a rt-relation
Definition RtFullInfo.h:15
double m_rmsAng
rms of segments angular distribution
Definition RtFullInfo.h:75
void write_forDB(FILE *frt) const
double m_convEst
parameter measuring the difference between the results of last two iterations
Definition RtFullInfo.h:81
double m_meanAng
mean of segments angular distribution
Definition RtFullInfo.h:73
int m_numSeg
number of segments in last iteration
Definition RtFullInfo.h:71
double m_qualEst
parameter measuring the smoothness of the rt or the quality of the parametrisation
Definition RtFullInfo.h:83
CscCalcPed - algorithm that finds the Cathode Strip Chamber pedestals from an RDO.
std::istream & operator>>(std::istream &is, RtFullInfo &data)
std::ostream & operator<<(std::ostream &os, const RtFullInfo &data)