|
Last change
on this file since 17515 was 14935, checked in by tbretz, 13 years ago |
|
Add changes necessary to remove fits completely from namespace std in MARS.
|
|
File size:
1.0 KB
|
| Line | |
|---|
| 1 |
|
|---|
| 2 | #include "MTopFitsGroup.h"
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 | // ----------------------------------------------------------------------------
|
|---|
| 6 | //
|
|---|
| 7 | // Attaches the table to this FITS group
|
|---|
| 8 | // Note: This FITS group as well as the table must be open, before calling
|
|---|
| 9 | // this method!
|
|---|
| 10 | void MTopFitsGroup::Attach(ofits* table)
|
|---|
| 11 | {
|
|---|
| 12 | // fTopGroup.SetChild(table);
|
|---|
| 13 | // fTopGroup.Write();
|
|---|
| 14 | }
|
|---|
| 15 |
|
|---|
| 16 | // ----------------------------------------------------------------------------
|
|---|
| 17 | //
|
|---|
| 18 | // Opens "table" with the next child in this group.
|
|---|
| 19 | // If table is an already open FITS table, then that table we be closed,
|
|---|
| 20 | // before the new child is assigned to "table"
|
|---|
| 21 | Bool_t MTopFitsGroup::GetNextChild(ofits* table)
|
|---|
| 22 | {
|
|---|
| 23 | // fTopGroup.SetChild(table);
|
|---|
| 24 | // return fTopGroup.Read();
|
|---|
| 25 | return false;
|
|---|
| 26 | }
|
|---|
| 27 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.