Jpp  18.1.0
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
JNOAA.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <iomanip>
3 #include <vector>
4 #include <map>
5 
6 #include "TROOT.h"
7 #include "TFile.h"
8 #include "TH1D.h"
9 #include "TGraph.h"
10 
11 #include "JCompass/JNOAA.hh"
12 
13 #include "Jeep/JParser.hh"
14 #include "Jeep/JMessage.hh"
15 
16 
17 /**
18  * \file
19  *
20  * Example program to plot NOAA functions.
21  * \author mdejong
22  */
23 int main(int argc, char **argv)
24 {
25  using namespace std;
26  using namespace JPP;
27 
28  string outputFile;
29  int debug;
30 
31  try {
32 
33  JParser<> zap("Example program to plot NOAA functions.");
34 
35  zap['o'] = make_field(outputFile) = "noaa.root";
36  zap['d'] = make_field(debug) = 2;
37 
38  zap(argc, argv);
39  }
40  catch(const exception &error) {
41  FATAL(error.what() << endl);
42  }
43 
44 
45  TFile out(outputFile.c_str(), "recreate");
46 
47  TH1D h1("[ARCA]", NULL, 1000, getARCAMagneticDeclination.getXmin(), getARCAMagneticDeclination.getXmax());
48  TH1D h2("[ORCA]", NULL, 1000, getARCAMagneticDeclination.getXmin(), getARCAMagneticDeclination.getXmax());
49 
50  for (Int_t ix = 1; ix <= h1.GetXaxis()->GetNbins(); ++ix) {
51 
52  const double x = h1.GetBinCenter(ix);
53  const double y1 = getARCAMagneticDeclination(x);
54  const double y2 = getORCAMagneticDeclination(x);
55 
56  h1.SetBinContent(ix, y1);
57  h2.SetBinContent(ix, y2);
58  }
59 
60  out.Write();
61  out.Close();
62 }
Utility class to parse command line options.
Definition: JParser.hh:1514
static JARCAMagneticDeclination getARCAMagneticDeclination
Function object for magnetic declination at ARCA site.
Definition: JNOAA.hh:730
int main(int argc, char *argv[])
Definition: Main.cc:15
string outputFile
static JORCAMagneticDeclination getORCAMagneticDeclination
Function object for magnetic declination at ORCA site.
Definition: JNOAA.hh:731
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
Definition: JParser.hh:1989
General purpose messaging.
#define FATAL(A)
Definition: JMessage.hh:67
Utility class to parse command line options.
int debug
debug level