| 1 | #include "mars/MTime.h"
|
|---|
| 2 |
|
|---|
| 3 | Double_t dates[] = {
|
|---|
| 4 | MTime(2009, 3, 30).GetAxisTime(), // Start of M2 observations
|
|---|
| 5 | MTime(2009, 4, 11).GetAxisTime(), // New pointing model
|
|---|
| 6 | MTime(2009, 5, 11).GetAxisTime(), // New pointing model
|
|---|
| 7 | MTime(2009, 6, 11).GetAxisTime(), // Something happened (readon unknown)
|
|---|
| 8 | MTime(2009, 8, 17).GetAxisTime(), // New pointing model
|
|---|
| 9 | MTime(2009, 9, 9).GetAxisTime(), // Something happened (reason unknown)
|
|---|
| 10 | MTime(2010, 2, 1).GetAxisTime(), // New pointing model
|
|---|
| 11 | // MTime(2010, 2, 3).GetAxisTime(), // New LUTs
|
|---|
| 12 | MTime(2010, 2, 26).GetAxisTime(), // New pointing model
|
|---|
| 13 | MTime(2010, 3, 31).GetAxisTime(), // New pointing model
|
|---|
| 14 | MTime(2010, 11, 2).GetAxisTime(), // A Change in Superarehucas (it was always focussed to the
|
|---|
| 15 | // position at which moving started, not where it ended
|
|---|
| 16 | // (This mainly affects the quality of the TPoints not the pointing model)
|
|---|
| 17 | MTime(2010, 12, 01).GetAxisTime(), // New pointing model
|
|---|
| 18 | MTime(-1).GetAxisTime(),
|
|---|
| 19 | -1
|
|---|
| 20 | };
|
|---|
| 21 |
|
|---|
| 22 | #include "plot.C"
|
|---|
| 23 |
|
|---|
| 24 | void plot_m2()
|
|---|
| 25 | {
|
|---|
| 26 | MDirIter Next;
|
|---|
| 27 | Next.AddDirectory("tpoint/m2", "tpoint*.txt", -1);
|
|---|
| 28 |
|
|---|
| 29 | plot(Next);
|
|---|
| 30 | }
|
|---|