00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
#ifndef PointingModelTable_CLASS
00035
#define PointingModelTable_CLASS
00036
00037
#include <string>
00038
#include <vector>
00039
#include <map>
00040
#include <set>
00041
using std::string;
00042
using std::vector;
00043
using std::map;
00044
00045
#include <Angle.h>
00046
#include <AngularRate.h>
00047
#include <ArrayTime.h>
00048
#include <ArrayTimeInterval.h>
00049
#include <Complex.h>
00050
#include <Entity.h>
00051
#include <EntityId.h>
00052
#include <EntityRef.h>
00053
#include <Flux.h>
00054
#include <Frequency.h>
00055
#include <Humidity.h>
00056
#include <Interval.h>
00057
#include <Length.h>
00058
#include <PartId.h>
00059
#include <Pressure.h>
00060
#include <Speed.h>
00061
#include <Tag.h>
00062
#include <Temperature.h>
00063
#include <ConversionException.h>
00064
#include <DuplicateKey.h>
00065
#include <UniquenessViolationException.h>
00066
#include <NoSuchRow.h>
00067
#include <DuplicateKey.h>
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
#ifndef WITHOUT_ACS
00091
#include <asdmIDLC.h>
00092
using asdmIDL::PointingModelTableIDL;
00093
#endif
00094
00095
using asdm::Angle;
00096
using asdm::AngularRate;
00097
using asdm::ArrayTime;
00098
using asdm::Complex;
00099
using asdm::Entity;
00100
using asdm::EntityId;
00101
using asdm::EntityRef;
00102
using asdm::Flux;
00103
using asdm::Frequency;
00104
using asdm::Humidity;
00105
using asdm::Interval;
00106
using asdm::Length;
00107
using asdm::PartId;
00108
using asdm::Pressure;
00109
using asdm::Speed;
00110
using asdm::Tag;
00111
using asdm::Temperature;
00112
00113
using asdm::DuplicateKey;
00114
using asdm::ConversionException;
00115
using asdm::NoSuchRow;
00116
using asdm::DuplicateKey;
00117
00118
#include <Representable.h>
00119
00120
namespace asdm {
00121
00122
00123
00124
00125
class ASDM;
00126
class PointingModelRow;
00195 class PointingModelTable :
public Representable {
00196
friend class asdm::ASDM;
00197
00198
public:
00199
00200
00206
static vector<string>
getKeyName();
00207
00208
00209
virtual ~
PointingModelTable();
00210
00216
ASDM &
getContainer()
const;
00217
00223
unsigned int size() ;
00224
00230 string
getName()
const;
00231
00235
Entity getEntity()
const;
00236
00241
void setEntity(
Entity e);
00242
00243
00244
00245
00246
00251
PointingModelRow *
newRow();
00252
00257
PointingModelRow*
newRowEmpty();
00258
00259
00273
PointingModelRow *
newRow(
Tag antennaId,
int numCoeff, vector<string > coeffName, vector<float > coeffVal);
00274
00279
PointingModelRow *
newRowFull(
Tag antennaId,
int numCoeff, vector<string > coeffName, vector<float > coeffVal);
00280
00281
00294
PointingModelRow *
newRow(
PointingModelRow *row);
00295
00300
PointingModelRow *
newRowCopy(
PointingModelRow *row);
00301
00302
00303
00304
00305
00306
00307
00308
00318
PointingModelRow*
add(
PointingModelRow* x) ;
00319
00320
00321
00322
00323
00324
00325
00331 vector<PointingModelRow *>
get() ;
00332
00333
00334
00335
00336
00348
PointingModelRow*
getRowByKey(
int pointingModelId,
Tag antennaId);
00349
00350
00351
00359 vector <PointingModelRow *>
getRowByPointingModelId(
int);
00360
00361
00362
00378
PointingModelRow*
lookup(
Tag antennaId,
int numCoeff, vector<string > coeffName, vector<float > coeffVal);
00379
00380
00381
#ifndef WITHOUT_ACS
00382
00388 PointingModelTableIDL *
toIDL() ;
00389
#endif
00390
00391
#ifndef WITHOUT_ACS
00392
00398
void fromIDL(PointingModelTableIDL x)
throw(
DuplicateKey,
ConversionException);
00399
#endif
00400
00404
char *
toFITS()
const throw(
ConversionException);
00405
00409
void fromFITS(
char *fits)
throw(
ConversionException);
00410
00414 string
toVOTable()
const throw(
ConversionException);
00415
00419
void fromVOTable(string vo)
throw(
ConversionException);
00420
00427 string
toXML()
throw(
ConversionException);
00428
00434
void fromXML(string xmlDoc)
throw(
ConversionException);
00435
00441 string
toMIME();
00442
00449
void setFromMIME(
const string & mimeMsg);
00450
00460
void toFile(string directory);
00461
00470
void setFromFile(
const string& directory);
00471
00472
private:
00473
00482
PointingModelTable (
ASDM & container);
00483
00484
ASDM & container;
00485
00486
bool archiveAsBin;
00487
bool fileAsBin ;
00488
00489
Entity entity;
00490
00491
00492
00493 map<string,int> noAutoIncIds;
00494
void autoIncrement(string key,
PointingModelRow* x);
00495
00496
00500
static string tableName;
00501
00502
00506
static vector<string> key;
00507
00508
00514
PointingModelRow* checkAndAdd(
PointingModelRow* x)
throw (
DuplicateKey,
UniquenessViolationException);
00515
00516
00517
00518
00519
00520
00521 vector<PointingModelRow * > privateRows;
00522
00523
00524
00525 vector<PointingModelRow *> row;
00526
00527
00528
void error()
throw(
ConversionException);
00529
00530 };
00531
00532 }
00533
00534
#endif