CalDelayRow.h
Go to the documentation of this file.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 CalDelayRow_CLASS
00035 #define CalDelayRow_CLASS
00036
00037 #include <vector>
00038 #include <string>
00039 #include <set>
00040
00041 #ifndef WITHOUT_ACS
00042 #include <asdmIDLC.h>
00043 #endif
00044
00045
00046
00047
00048
00049
00050
00051 #include <ArrayTime.h>
00052
00053
00054
00055 #include <Angle.h>
00056
00057
00058
00059 #include <Tag.h>
00060
00061
00062
00063 #include <Frequency.h>
00064
00065
00066
00067
00068
00069
00070
00071
00072 #include "CAtmPhaseCorrection.h"
00073
00074
00075
00076 #include "CBasebandName.h"
00077
00078
00079
00080 #include "CReceiverBand.h"
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096 #include "CPolarizationType.h"
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114 #include "CReceiverSideband.h"
00115
00116
00117
00118
00119 #include <ConversionException.h>
00120 #include <NoSuchRow.h>
00121 #include <IllegalAccessException.h>
00122
00123 #include <RowTransformer.h>
00124
00125
00126
00127
00128
00129
00130 namespace asdm {
00131
00132
00133
00134
00135
00136 class CalDataRow;
00137
00138
00139 class CalReductionRow;
00140
00141
00142 class CalDelayRow;
00143 typedef void (CalDelayRow::*CalDelayAttributeFromBin) (EndianIStream& eis);
00144 typedef void (CalDelayRow::*CalDelayAttributeFromText) (const string& s);
00145
00152 class CalDelayRow {
00153 friend class asdm::CalDelayTable;
00154 friend class asdm::RowTransformer<CalDelayRow>;
00155
00156
00157 public:
00158
00159 virtual ~CalDelayRow();
00160
00164 CalDelayTable &getTable() const;
00165
00170 bool isAdded() const;
00171
00173
00175
00176
00177
00178
00179
00180
00181
00182
00187 string getAntennaName() const;
00188
00189
00190
00191
00201 void setAntennaName (string antennaName);
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214
00219 AtmPhaseCorrectionMod::AtmPhaseCorrection getAtmPhaseCorrection() const;
00220
00221
00222
00223
00233 void setAtmPhaseCorrection (AtmPhaseCorrectionMod::AtmPhaseCorrection atmPhaseCorrection);
00234
00235
00236
00237
00238
00239
00240
00241
00242
00243
00244
00245
00246
00251 BasebandNameMod::BasebandName getBasebandName() const;
00252
00253
00254
00255
00265 void setBasebandName (BasebandNameMod::BasebandName basebandName);
00266
00267
00268
00269
00270
00271
00272
00273
00274
00275
00276
00277
00278
00283 ReceiverBandMod::ReceiverBand getReceiverBand() const;
00284
00285
00286
00287
00297 void setReceiverBand (ReceiverBandMod::ReceiverBand receiverBand);
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308
00309
00310
00315 ArrayTime getStartValidTime() const;
00316
00317
00318
00319
00327 void setStartValidTime (ArrayTime startValidTime);
00328
00329
00330
00331
00332
00333
00334
00335
00336
00337
00338
00339
00340
00345 ArrayTime getEndValidTime() const;
00346
00347
00348
00349
00357 void setEndValidTime (ArrayTime endValidTime);
00358
00359
00360
00361
00362
00363
00364
00365
00366
00367
00368
00369
00370
00375 string getRefAntennaName() const;
00376
00377
00378
00379
00387 void setRefAntennaName (string refAntennaName);
00388
00389
00390
00391
00392
00393
00394
00395
00396
00397
00398
00399
00400
00405 int getNumReceptor() const;
00406
00407
00408
00409
00417 void setNumReceptor (int numReceptor);
00418
00419
00420
00421
00422
00423
00424
00425
00426
00427
00428
00429
00430
00435 vector<double > getDelayError() const;
00436
00437
00438
00439
00447 void setDelayError (vector<double > delayError);
00448
00449
00450
00451
00452
00453
00454
00455
00456
00457
00458
00459
00460
00465 vector<double > getDelayOffset() const;
00466
00467
00468
00469
00477 void setDelayOffset (vector<double > delayOffset);
00478
00479
00480
00481
00482
00483
00484
00485
00486
00487
00488
00489
00490
00495 vector<PolarizationTypeMod::PolarizationType > getPolarizationTypes() const;
00496
00497
00498
00499
00507 void setPolarizationTypes (vector<PolarizationTypeMod::PolarizationType > polarizationTypes);
00508
00509
00510
00511
00512
00513
00514
00515
00516
00517
00518
00519
00520
00525 vector<double > getReducedChiSquared() const;
00526
00527
00528
00529
00537 void setReducedChiSquared (vector<double > reducedChiSquared);
00538
00539
00540
00541
00542
00543
00544
00545
00546
00547
00548
00549
00550
00555 vector<double > getAppliedDelay() const;
00556
00557
00558
00559
00567 void setAppliedDelay (vector<double > appliedDelay);
00568
00569
00570
00571
00572
00573
00574
00575
00576
00577
00578
00583 bool isCrossDelayOffsetExists() const;
00584
00585
00586
00592 double getCrossDelayOffset() const;
00593
00594
00595
00596
00603 void setCrossDelayOffset (double crossDelayOffset);
00604
00605
00606
00607
00611 void clearCrossDelayOffset ();
00612
00613
00614
00615
00616
00617
00618
00619
00624 bool isCrossDelayOffsetErrorExists() const;
00625
00626
00627
00633 double getCrossDelayOffsetError() const;
00634
00635
00636
00637
00644 void setCrossDelayOffsetError (double crossDelayOffsetError);
00645
00646
00647
00648
00652 void clearCrossDelayOffsetError ();
00653
00654
00655
00656
00657
00658
00659
00660
00665 bool isNumSidebandExists() const;
00666
00667
00668
00674 int getNumSideband() const;
00675
00676
00677
00678
00685 void setNumSideband (int numSideband);
00686
00687
00688
00689
00693 void clearNumSideband ();
00694
00695
00696
00697
00698
00699
00700
00701
00706 bool isRefFreqExists() const;
00707
00708
00709
00715 vector<Frequency > getRefFreq() const;
00716
00717
00718
00719
00726 void setRefFreq (vector<Frequency > refFreq);
00727
00728
00729
00730
00734 void clearRefFreq ();
00735
00736
00737
00738
00739
00740
00741
00742
00747 bool isRefFreqPhaseExists() const;
00748
00749
00750
00756 vector<Angle > getRefFreqPhase() const;
00757
00758
00759
00760
00767 void setRefFreqPhase (vector<Angle > refFreqPhase);
00768
00769
00770
00771
00775 void clearRefFreqPhase ();
00776
00777
00778
00779
00780
00781
00782
00783
00788 bool isSidebandsExists() const;
00789
00790
00791
00797 vector<ReceiverSidebandMod::ReceiverSideband > getSidebands() const;
00798
00799
00800
00801
00808 void setSidebands (vector<ReceiverSidebandMod::ReceiverSideband > sidebands);
00809
00810
00811
00812
00816 void clearSidebands ();
00817
00818
00819
00821
00823
00824
00825
00826
00827
00828
00829
00830
00835 Tag getCalDataId() const;
00836
00837
00838
00839
00849 void setCalDataId (Tag calDataId);
00850
00851
00852
00853
00854
00855
00856
00857
00858
00859
00860
00861
00862
00867 Tag getCalReductionId() const;
00868
00869
00870
00871
00881 void setCalReductionId (Tag calReductionId);
00882
00883
00884
00885
00886
00887
00889
00891
00892
00893
00894
00895
00902 CalDataRow* getCalDataUsingCalDataId();
00903
00904
00905
00906
00907
00908
00909
00910
00917 CalReductionRow* getCalReductionUsingCalReductionId();
00918
00919
00920
00921
00922
00923
00924
00960 bool compareNoAutoInc(string antennaName, AtmPhaseCorrectionMod::AtmPhaseCorrection atmPhaseCorrection, BasebandNameMod::BasebandName basebandName, ReceiverBandMod::ReceiverBand receiverBand, Tag calDataId, Tag calReductionId, ArrayTime startValidTime, ArrayTime endValidTime, string refAntennaName, int numReceptor, vector<double > delayError, vector<double > delayOffset, vector<PolarizationTypeMod::PolarizationType > polarizationTypes, vector<double > reducedChiSquared, vector<double > appliedDelay);
00961
00962
00963
00964
00988 bool compareRequiredValue(ArrayTime startValidTime, ArrayTime endValidTime, string refAntennaName, int numReceptor, vector<double > delayError, vector<double > delayOffset, vector<PolarizationTypeMod::PolarizationType > polarizationTypes, vector<double > reducedChiSquared, vector<double > appliedDelay);
00989
00990
00999 bool equalByRequiredValue(CalDelayRow* x) ;
01000
01001 #ifndef WITHOUT_ACS
01002
01006 asdmIDL::CalDelayRowIDL *toIDL() const;
01007
01015 void toIDL(asdmIDL::CalDelayRowIDL& x) const;
01016 #endif
01017
01018 #ifndef WITHOUT_ACS
01019
01024 void setFromIDL (asdmIDL::CalDelayRowIDL x) ;
01025 #endif
01026
01031 std::string toXML() const;
01032
01039 void setFromXML (std::string rowDoc) ;
01040
01043
01045
01046 std::map<std::string, CalDelayAttributeFromBin> fromBinMethods;
01047 void antennaNameFromBin( EndianIStream& eis);
01048 void atmPhaseCorrectionFromBin( EndianIStream& eis);
01049 void basebandNameFromBin( EndianIStream& eis);
01050 void receiverBandFromBin( EndianIStream& eis);
01051 void calDataIdFromBin( EndianIStream& eis);
01052 void calReductionIdFromBin( EndianIStream& eis);
01053 void startValidTimeFromBin( EndianIStream& eis);
01054 void endValidTimeFromBin( EndianIStream& eis);
01055 void refAntennaNameFromBin( EndianIStream& eis);
01056 void numReceptorFromBin( EndianIStream& eis);
01057 void delayErrorFromBin( EndianIStream& eis);
01058 void delayOffsetFromBin( EndianIStream& eis);
01059 void polarizationTypesFromBin( EndianIStream& eis);
01060 void reducedChiSquaredFromBin( EndianIStream& eis);
01061 void appliedDelayFromBin( EndianIStream& eis);
01062
01063 void crossDelayOffsetFromBin( EndianIStream& eis);
01064 void crossDelayOffsetErrorFromBin( EndianIStream& eis);
01065 void numSidebandFromBin( EndianIStream& eis);
01066 void refFreqFromBin( EndianIStream& eis);
01067 void refFreqPhaseFromBin( EndianIStream& eis);
01068 void sidebandsFromBin( EndianIStream& eis);
01069
01070
01078 static CalDelayRow* fromBin(EndianIStream& eis, CalDelayTable& table, const std::vector<std::string>& attributesSeq);
01079
01086 void fromText(const std::string& attributeName, const std::string& t);
01088
01089 private:
01093 CalDelayTable &table;
01097 bool hasBeenAdded;
01098
01099
01100 void isAdded(bool added);
01101
01102
01111 CalDelayRow (CalDelayTable &table);
01112
01130 CalDelayRow (CalDelayTable &table, CalDelayRow &row);
01131
01133
01135
01136
01137
01138
01139
01140
01141 string antennaName;
01142
01143
01144
01145
01146
01147
01148
01149
01150
01151
01152 AtmPhaseCorrectionMod::AtmPhaseCorrection atmPhaseCorrection;
01153
01154
01155
01156
01157
01158
01159
01160
01161
01162
01163 BasebandNameMod::BasebandName basebandName;
01164
01165
01166
01167
01168
01169
01170
01171
01172
01173
01174 ReceiverBandMod::ReceiverBand receiverBand;
01175
01176
01177
01178
01179
01180
01181
01182
01183
01184
01185 ArrayTime startValidTime;
01186
01187
01188
01189
01190
01191
01192
01193
01194
01195
01196 ArrayTime endValidTime;
01197
01198
01199
01200
01201
01202
01203
01204
01205
01206
01207 string refAntennaName;
01208
01209
01210
01211
01212
01213
01214
01215
01216
01217
01218 int numReceptor;
01219
01220
01221
01222
01223
01224
01225
01226
01227
01228
01229 vector<double > delayError;
01230
01231
01232
01233
01234
01235
01236
01237
01238
01239
01240 vector<double > delayOffset;
01241
01242
01243
01244
01245
01246
01247
01248
01249
01250
01251 vector<PolarizationTypeMod::PolarizationType > polarizationTypes;
01252
01253
01254
01255
01256
01257
01258
01259
01260
01261
01262 vector<double > reducedChiSquared;
01263
01264
01265
01266
01267
01268
01269
01270
01271
01272
01273 vector<double > appliedDelay;
01274
01275
01276
01277
01278
01279
01280
01281
01282
01283 bool crossDelayOffsetExists;
01284
01285
01286 double crossDelayOffset;
01287
01288
01289
01290
01291
01292
01293
01294
01295
01296 bool crossDelayOffsetErrorExists;
01297
01298
01299 double crossDelayOffsetError;
01300
01301
01302
01303
01304
01305
01306
01307
01308
01309 bool numSidebandExists;
01310
01311
01312 int numSideband;
01313
01314
01315
01316
01317
01318
01319
01320
01321
01322 bool refFreqExists;
01323
01324
01325 vector<Frequency > refFreq;
01326
01327
01328
01329
01330
01331
01332
01333
01334
01335 bool refFreqPhaseExists;
01336
01337
01338 vector<Angle > refFreqPhase;
01339
01340
01341
01342
01343
01344
01345
01346
01347
01348 bool sidebandsExists;
01349
01350
01351 vector<ReceiverSidebandMod::ReceiverSideband > sidebands;
01352
01353
01354
01355
01356
01358
01360
01361
01362
01363
01364
01365
01366 Tag calDataId;
01367
01368
01369
01370
01371
01372
01373
01374
01375
01376
01377 Tag calReductionId;
01378
01379
01380
01381
01382
01384
01386
01387
01388
01389
01390
01391
01392
01393
01394
01395
01396
01397
01398
01399
01400
01401
01402
01404
01406
01407
01408
01409
01410
01411
01412
01413
01414
01415
01416
01417
01418
01419
01420
01421
01422
01423
01424
01425
01426
01427
01428
01429
01430
01431
01433
01435 std::map<std::string, CalDelayAttributeFromText> fromTextMethods;
01436
01437 void antennaNameFromText (const string & s);
01438
01439
01440 void atmPhaseCorrectionFromText (const string & s);
01441
01442
01443 void basebandNameFromText (const string & s);
01444
01445
01446 void receiverBandFromText (const string & s);
01447
01448
01449 void calDataIdFromText (const string & s);
01450
01451
01452 void calReductionIdFromText (const string & s);
01453
01454
01455 void startValidTimeFromText (const string & s);
01456
01457
01458 void endValidTimeFromText (const string & s);
01459
01460
01461 void refAntennaNameFromText (const string & s);
01462
01463
01464 void numReceptorFromText (const string & s);
01465
01466
01467 void delayErrorFromText (const string & s);
01468
01469
01470 void delayOffsetFromText (const string & s);
01471
01472
01473 void polarizationTypesFromText (const string & s);
01474
01475
01476 void reducedChiSquaredFromText (const string & s);
01477
01478
01479 void appliedDelayFromText (const string & s);
01480
01481
01482
01483 void crossDelayOffsetFromText (const string & s);
01484
01485
01486 void crossDelayOffsetErrorFromText (const string & s);
01487
01488
01489 void numSidebandFromText (const string & s);
01490
01491
01492 void refFreqFromText (const string & s);
01493
01494
01495 void refFreqPhaseFromText (const string & s);
01496
01497
01498 void sidebandsFromText (const string & s);
01499
01500
01501
01506 void toBin(EndianOSStream& eoss);
01507
01517 };
01518
01519 }
01520
01521 #endif