LCOV - code coverage report
Current view: top level - msvis/MSVis/statistics - Vi2AntennaDataProvider.cc (source / functions) Hit Total Coverage
Test: casacpp_coverage.info Lines: 0 10 0.0 %
Date: 2024-10-04 16:51:10 Functions: 0 4 0.0 %

          Line data    Source code
       1             : //# Copyright (C) 1996,1997,1998,1999,2000,2002,2003,2015
       2             : //# Associated Universities, Inc. Washington DC, USA.
       3             : //#
       4             : //# This library is free software; you can redistribute it and/or modify it
       5             : //# under the terms of the GNU Library General Public License as published by
       6             : //# the Free Software Foundation; either version 2 of the License, or (at your
       7             : //# option) any later version.
       8             : //#
       9             : //# This library is distributed in the hope that it will be useful, but WITHOUT
      10             : //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
      11             : //# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
      12             : //# License for more details.
      13             : //#
      14             : //# You should have received a copy of the GNU Library General Public License
      15             : //# along with this library; if not, write to the Free Software Foundation,
      16             : //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
      17             : //#
      18             : //# Correspondence concerning AIPS++ should be addressed as follows:
      19             : //#        Internet email: casa-feedback@nrao.edu.
      20             : //#        Postal address: AIPS++ Project Office
      21             : //#                        National Radio Astronomy Observatory
      22             : //#                        520 Edgemont Road
      23             : //#                        Charlottesville, VA 22903-2475 USA
      24             : //#
      25             : //
      26             : // Antenna column data providers
      27             : //
      28             : #include <msvis/MSVis/statistics/Vi2AntennaDataProvider.h>
      29             : #include <msvis/MSVis/VisBufferComponents2.h>
      30             : 
      31             : using namespace casacore;
      32             : namespace casa {
      33             : 
      34           0 : Vi2Antenna1DataProvider::Vi2Antenna1DataProvider(
      35             :         vi::VisibilityIterator2 *vi2,
      36             :         const std::set<MSMainEnums::PredefinedColumns> &mergedColumns,
      37           0 :         Bool omit_flagged_data)
      38             :         : Vi2DataProvider(
      39             :                 vi2,
      40             :                 mergedColumns,
      41             :                 vi::VisBufferComponent2::Antenna1,
      42             :                 omit_flagged_data,
      43           0 :                 false) {}
      44             : 
      45             : const Vector<Int>&
      46           0 : Vi2Antenna1DataProvider::dataArray() {
      47           0 :         return vi2->getVisBuffer()->antenna1();
      48             : }
      49             : 
      50           0 : Vi2Antenna2DataProvider::Vi2Antenna2DataProvider(
      51             :         vi::VisibilityIterator2 *vi2,
      52             :         const std::set<MSMainEnums::PredefinedColumns> &mergedColumns,
      53           0 :         Bool omit_flagged_data)
      54             :         : Vi2DataProvider(
      55             :                 vi2,
      56             :                 mergedColumns,
      57             :                 vi::VisBufferComponent2::Antenna2,
      58             :                 omit_flagged_data,
      59           0 :                 false) {}
      60             : 
      61             : const Vector<Int>&
      62           0 : Vi2Antenna2DataProvider::dataArray() {
      63           0 :         return vi2->getVisBuffer()->antenna2();
      64             : }
      65             : 
      66             : 
      67             : } // namespace casa
      68             : 
      69             : 
      70             : 

Generated by: LCOV version 1.16