source: trunk/apps/asap2to3.cpp @ 2157

Last change on this file since 2157 was 2157, checked in by Takeshi Nakazato, 13 years ago

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: run asap2to3 in=<filename>/

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

Bug fix on output file name when input file name ends with '/'.

File size: 1.3 KB
Line 
1#include <casa/aips.h>
2#include <casa/iostream.h>
3#include <casa/Inputs.h>
4#include <tables/Tables/Table.h>
5#include <tables/Tables/ScaColDesc.h>
6
7//#include <casa/namesapce.h>
8using namespace casa;
9
10int main(int argc, const char* argv[]) {
11  // enable input in no-prompt mode
12  Input inputs(1);
13  // define the input structure
14  inputs.version("20090915MM");
15  inputs.create ("in", "", "Name of asap file", "string");
16  // Fill the input structure from the command line.
17  inputs.readArguments (argc, argv);
18  String fname =  inputs.getString("in");
19  if ( fname.lastchar() == '/' )
20    fname = fname.substr(0,fname.length()-1) ;
21  Table origtab(fname);
22  fname +=".asap3";
23  //cout << "fname=" << fname << endl ;
24  origtab.deepCopy(fname, Table::New);
25  Table tab(fname, Table::Update);
26  tab.removeColumn("PARANGLE");
27  Table tfocus = tab.rwKeywordSet().asTable("FOCUS");
28  ScalarColumnDesc<Float> pa("PARANGLE");
29  pa.setDefault(Float(0.0));
30  tfocus.addColumn(pa);
31  //tfocus.rwKeywordSet().define("PARALLACTIFY", False)
32  Int verid=tab.rwKeywordSet().fieldNumber("VERSION");
33  tab.rwKeywordSet().define(verid,uInt(3));
34  tab.tableInfo().setType("Scantable");
35  cout << "WARNING: This has invalidated the parallactic angle in the data. Reprocess the data in ASAP 3 "
36       << "if you need to handle polarisation conversions"
37       << endl;
38  return 0;
39 
40}
Note: See TracBrowser for help on using the repository browser.