Jpp
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Functions
JNOAA.cc File Reference

Example program to plot NOAA functions. More...

#include <iostream>
#include <iomanip>
#include <vector>
#include <map>
#include "TROOT.h"
#include "TFile.h"
#include "TH1D.h"
#include "TGraph.h"
#include "JCompass/JNOAA.hh"
#include "Jeep/JParser.hh"
#include "Jeep/JMessage.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Example program to plot NOAA functions.

Author
mdejong

Definition in file JNOAA.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 24 of file JNOAA.cc.

25 {
26  using namespace std;
27  using namespace JPP;
28 
29  string outputFile;
30  int debug;
31 
32  try {
33 
34  JParser<> zap("Example program to plot NOAA functions.");
35 
36  zap['o'] = make_field(outputFile) = "noaa.root";
37  zap['d'] = make_field(debug) = 2;
38 
39  zap(argc, argv);
40  }
41  catch(const exception &error) {
42  FATAL(error.what() << endl);
43  }
44 
45 
46  TFile out(outputFile.c_str(), "recreate");
47 
48  TH1D h1("[ARCA]", NULL, 1000, getARCAMagneticDeclination.getXmin(), getARCAMagneticDeclination.getXmax());
49  TH1D h2("[ORCA]", NULL, 1000, getARCAMagneticDeclination.getXmin(), getARCAMagneticDeclination.getXmax());
50 
51  for (Int_t ix = 1; ix <= h1.GetXaxis()->GetNbins(); ++ix) {
52 
53  const double x = h1.GetBinCenter(ix);
54  const double y1 = getARCAMagneticDeclination(x);
55  const double y2 = getORCAMagneticDeclination(x);
56 
57  h1.SetBinContent(ix, y1);
58  h2.SetBinContent(ix, y2);
59  }
60 
61  out.Write();
62  out.Close();
63 }
Utility class to parse command line options.
Definition: JParser.hh:1500
static JARCAMagneticDeclination getARCAMagneticDeclination
Function object for magnetic declination at ARCA site.
Definition: JNOAA.hh:729
then for HISTOGRAM in h0 h1
Definition: JMatrixNZ.sh:69
string outputFile
static JORCAMagneticDeclination getORCAMagneticDeclination
Function object for magnetic declination at ORCA site.
Definition: JNOAA.hh:730
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
Definition: JParser.hh:1961
int debug
debug level
Definition: JSirene.cc:63
#define FATAL(A)
Definition: JMessage.hh:67