LCOV - code coverage report
Current view: top level - alma/ASDM - AngularRate.cc (source / functions) Hit Total Coverage
Test: casacpp_coverage.info Lines: 5 71 7.0 %
Date: 2024-11-06 17:42:47 Functions: 2 12 16.7 %

          Line data    Source code
       1             : /*
       2             :  * ALMA - Atacama Large Millimeter Array
       3             :  * (c) European Southern Observatory, 2002
       4             :  * (c) Associated Universities Inc., 2002
       5             :  * Copyright by ESO (in the framework of the ALMA collaboration),
       6             :  * Copyright by AUI (in the framework of the ALMA collaboration),
       7             :  * All rights reserved.
       8             :  * 
       9             :  * This library is free software; you can redistribute it and/or
      10             :  * modify it under the terms of the GNU Lesser General Public
      11             :  * License as published by the Free software Foundation; either
      12             :  * version 2.1 of the License, or (at your option) any later version.
      13             :  * 
      14             :  * This library is distributed in the hope that it will be useful,
      15             :  * but WITHOUT ANY WARRANTY, without even the implied warranty of
      16             :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      17             :  * Lesser General Public License for more details.
      18             :  * 
      19             :  * You should have received a copy of the GNU Lesser General Public
      20             :  * License along with this library; if not, write to the Free Software
      21             :  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
      22             :  * MA 02111-1307  USA
      23             :  *
      24             :  * File AngularRate.cpp
      25             :  */
      26             : 
      27             : #include <alma/ASDM/AngularRate.h>
      28             : #include <alma/ASDM/DoubleWrapper.h>
      29             : #include <alma/ASDM/NumberFormatException.h>
      30             : 
      31             : using namespace std;
      32             : 
      33             : namespace asdm {
      34             : 
      35       19226 : AngularRate AngularRate::getAngularRate(StringTokenizer &t) {
      36       19226 :         double value = Double::parseDouble(t.nextToken());
      37       19226 :         return AngularRate (value);
      38             : }
      39             : 
      40           0 : bool AngularRate::isZero() const {
      41           0 :         return value == 0.0;
      42             : }
      43             : 
      44           0 : double AngularRate::fromString(const string& s) {
      45           0 :         return Double::parseDouble(s);
      46             : }
      47             : 
      48         998 : string AngularRate::toString(double x) {
      49         998 :         return Double::toString(x);
      50             : }
      51             : 
      52           0 : void AngularRate::toBin(EndianOSStream& eoss) {
      53           0 :         eoss.writeDouble(       value);
      54           0 : }
      55             : 
      56           0 : void AngularRate::toBin(const vector<AngularRate>& angularRate,  EndianOSStream& eoss) {
      57           0 :         eoss.writeInt((int) angularRate.size());
      58           0 :         for (unsigned int i = 0; i < angularRate.size(); i++)
      59           0 :                 eoss.writeDouble(angularRate.at(i).value);
      60           0 : }
      61             : 
      62           0 : void AngularRate::toBin(const vector<vector<AngularRate> >& angularRate,  EndianOSStream& eoss) {
      63           0 :         eoss.writeInt((int) angularRate.size());
      64           0 :         eoss.writeInt((int) angularRate.at(0).size());
      65           0 :         for (unsigned int i = 0; i < angularRate.size(); i++)
      66           0 :                 for (unsigned int j = 0; j < angularRate.at(0).size(); j++)
      67           0 :                         eoss.writeDouble(angularRate.at(i).at(j).value);
      68           0 : }
      69             : 
      70           0 : void AngularRate::toBin(const vector< vector<vector<AngularRate> > >& angularRate,  EndianOSStream& eoss) {
      71           0 :         eoss.writeInt((int) angularRate.size());
      72           0 :         eoss.writeInt((int) angularRate.at(0).size());
      73           0 :         eoss.writeInt((int) angularRate.at(0).at(0).size());    
      74           0 :         for (unsigned int i = 0; i < angularRate.size(); i++)
      75           0 :                 for (unsigned int j = 0; j < angularRate.at(0).size(); j++)
      76           0 :                                 for (unsigned int k = 0; k < angularRate.at(0).at(0).size(); j++)
      77           0 :                                         eoss.writeDouble(angularRate.at(i).at(j).at(k).value);
      78           0 : }
      79             : 
      80           0 : AngularRate AngularRate::fromBin(EndianIStream & eis) {
      81           0 :         return AngularRate(eis.readDouble());
      82             : }
      83             : 
      84           0 : vector<AngularRate> AngularRate::from1DBin(EndianIStream & eis) {
      85           0 :         int dim1 = eis.readInt();
      86           0 :         vector<AngularRate> result;
      87           0 :         for (int i = 0; i < dim1; i++)
      88           0 :                 result.push_back(AngularRate(eis.readDouble()));
      89           0 :         return result;  
      90           0 : }
      91             : 
      92           0 : vector<vector<AngularRate > > AngularRate::from2DBin(EndianIStream & eis) {
      93           0 :         int dim1 = eis.readInt();
      94           0 :         int dim2 = eis.readInt();
      95           0 :         vector< vector<AngularRate> >result;
      96           0 :         vector <AngularRate> aux;
      97           0 :         for (int i = 0; i < dim1; i++) {
      98           0 :                 aux.clear();
      99           0 :                 for (int j = 0; j < dim2; j++)
     100           0 :                         aux.push_back(AngularRate(eis.readDouble()));
     101           0 :                 result.push_back(aux);
     102             :         }
     103           0 :         return result;  
     104           0 : }
     105             : 
     106           0 : vector<vector<vector<AngularRate > > > AngularRate::from3DBin(EndianIStream & eis) {
     107           0 :         int dim1 = eis.readInt();
     108           0 :         int dim2 = eis.readInt();
     109           0 :         int dim3 = eis.readInt();
     110           0 :         vector<vector< vector<AngularRate> > >result;
     111           0 :         vector < vector<AngularRate> >aux1;
     112           0 :         vector <AngularRate> aux2;
     113           0 :         for (int i = 0; i < dim1; i++) {
     114           0 :                 aux1.clear();
     115           0 :                 for (int j = 0; j < dim2; j++) {
     116           0 :                         aux2.clear();
     117           0 :                         for (int k = 0; k < dim3; k++)
     118           0 :                                 aux2.push_back(AngularRate(eis.readDouble()));
     119           0 :                         aux1.push_back(aux2);
     120             :                 }
     121           0 :                 result.push_back(aux1);
     122             :         }
     123           0 :         return result;  
     124           0 : }
     125             : } // End namespace asdm

Generated by: LCOV version 1.16