Jpp  16.0.2
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Functions
JCheckDetectorIntegration.cc File Reference

Auxiliary program to check detector integration. More...

#include <string>
#include <iostream>
#include <iomanip>
#include <map>
#include "JDB/JDB.hh"
#include "JDB/JSelector.hh"
#include "JDB/JSelectorSupportkit.hh"
#include "JDB/JDBToolkit.hh"
#include "JDB/JDetectorIntegration.hh"
#include "JDB/JDetectorIntegration_t.hh"
#include "JDB/JProductRouter.hh"
#include "JDB/JLocation_t.hh"
#include "Jeep/JPrint.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

Auxiliary program to check detector integration.

Author
mdejong

Definition in file JCheckDetectorIntegration.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 26 of file JCheckDetectorIntegration.cc.

27 {
28  using namespace std;
29  using namespace JPP;
30 
31  JServer server;
32  string usr;
33  string pwd;
34  string cookie;
35  string outputFile;
36  string detid;
37  int debug;
38 
39  try {
40 
41  JParser<> zap("Auxiliary program to check detector integration.");
42 
43  zap['s'] = make_field(server) = getServernames();
44  zap['u'] = make_field(usr) = "";
45  zap['!'] = make_field(pwd) = "";
46  zap['C'] = make_field(cookie) = "";
47  zap['D'] = make_field(detid, "Detector identifier");
48  zap['d'] = make_field(debug) = 1;
49 
50  zap(argc, argv);
51  }
52  catch(const exception &error) {
53  FATAL(error.what() << endl);
54  }
55 
56 
57  try {
58 
59  JDB::reset(usr, pwd, cookie);
60 
61  const int ID = getDetector<int> (detid);
62  detid = getDetector<string>(detid);
63 
64  typedef map<JUPI_t, JLocation_t> detector_type;
65 
66  detector_type detectorA;
67 
68  {
69  ResultSet& rs = getResultSet(getTable<JDetectorIntegration>(), getSelector<JDetectorIntegration>(ID));
70 
71  for (JDetectorIntegration parameters; rs >> parameters; ) {
72 
73  if (parameters.PMTUPI.getPBS() == PBS::PMT) {
74  detectorA[parameters.PMTUPI] = JLocation_t(parameters.DUID, parameters.FLOORID, parameters.CABLEPOS);
75  }
76  }
77 
78  rs.Close();
79  }
80 
81 
82  JDetectorIntegration_t detectorB;
83 
84  {
85  ResultSet& rs = getResultSet(getTable<JDetectorIntegration_t>());
86 
87  if (! (rs >> detectorB)) {
88  THROW(JDatabaseException, "Error reading " << getTable<JDetectorIntegration_t>());
89  }
90  }
91 
92  detectorB.configure(detid);
93 
94  const JProductRouter router(detectorB, PBS::PMT_SEQUENCES);
95 
96 
97  for (detector_type::const_iterator i = detectorA.begin(); i != detectorA.end(); ++i) {
98 
99  const JLocation_t locationA = i->second;
100  const JLocation_t locationB = router.getLocation(i->first);
101 
102  cout << locationA << ' ' << locationB << ' ' << (locationA != locationB ? "*" : "") << endl;
103  }
104  }
105  catch(const exception& error) {
106  FATAL(error.what() << endl);
107  }
108 }
Utility class to parse command line options.
Definition: JParser.hh:1500
static const JPBS_t PMT(3, 4, 2, 3)
PBS of photo-multiplier tube (PMT)
static const JPBSSequences PMT_SEQUENCES
PBS sequences for PMT.
#define THROW(JException_t, A)
Marco for throwing exception with std::ostream compatible message.
Definition: JException.hh:696
*fatal Wrong number of arguments esac JCookie sh typeset Z DETECTOR typeset Z SOURCE_RUN typeset Z TARGET_RUN set_variable PARAMETERS_FILE $WORKDIR parameters
Definition: diff-Tuna.sh:38
string outputFile
#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
void reset(T &value)
Reset value.
ResultSet & getResultSet(const std::string &query)
Get result set.
Definition: JDB.hh:432
std::vector< JServer > getServernames()
Get list of names of available database servers.
Definition: JDB.hh:98