Jpp 19.3.0-rc.3
the software that should make you happy
Loading...
Searching...
No Matches
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 */
23int 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 DEBUG(FIXED(12,1) << x << ' ' << FIXED(7,3) << y1 << ' ' << FIXED(7,3) << y2 << endl);
57
58 h1.SetBinContent(ix, y1);
59 h2.SetBinContent(ix, y2);
60 }
61
62 out.Write();
63 out.Close();
64}
string outputFile
General purpose messaging.
#define DEBUG(A)
Message macros.
Definition JMessage.hh:62
#define FATAL(A)
Definition JMessage.hh:67
int debug
debug level
Definition JSirene.cc:72
int main(int argc, char **argv)
Definition JNOAA.cc:23
Utility class to parse command line options.
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
Definition JParser.hh:2142
Utility class to parse command line options.
Definition JParser.hh:1698
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Auxiliary data structure for floating point format specification.
Definition JManip.hh:448