~vpec/maus/tof_calib_read

« back to all changes in this revision

Viewing changes to src/common_cpp/Utils/DAQChannelMap.hh

reverse merge from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of MAUS: http://micewww.pp.rl.ac.uk:8080/projects/maus
 
2
 *
 
3
 * MAUS is free software: you can redistribute it and/or modify
 
4
 * it under the terms of the GNU General Public License as published by
 
5
 * the Free Software Foundation, either version 3 of the License, or
 
6
 * (at your option) any later version.
 
7
 *
 
8
 * MAUS is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with MAUS.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 */
 
17
 
 
18
#ifndef _MAUS_INPUTCPPREALDATA_CA_HH_
 
19
#define _MAUS_INPUTCPPREALDATA_CA_HH_
 
20
 
 
21
 
 
22
#include <stdint.h>
 
23
#include <stdlib.h>
 
24
#include <limits.h>
 
25
#include <string>
 
26
#include <vector>
 
27
#include <iostream>
 
28
#include <sstream>
 
29
#include <algorithm>
 
30
#include <fstream>
 
31
 
 
32
#include "Interface/Squeal.hh"
 
33
 
 
34
/** Identifier for a single DAQ channel.
 
35
 * This class is used to hold and manage all the information needed
 
36
 * to identifiy one DAQ Channel.
 
37
 */
 
38
class DAQChannelKey {
 
39
 public:
 
40
 
 
41
  DAQChannelKey()
 
42
  :_ldcId(-999), _geo(-999), _channel(-999), _eqType(-999), _detector("unknown") {}
 
43
 
 
44
  DAQChannelKey(int l, int g, int ch, int e, std::string d)
 
45
  :_ldcId(l), _geo(g), _channel(ch), _eqType(e), _detector(d) {}
 
46
 
 
47
  explicit DAQChannelKey(std::string keyStr) throw(Squeal);
 
48
 
 
49
  virtual ~DAQChannelKey() {}
 
50
 
 
51
  bool operator==( DAQChannelKey key );
 
52
  bool operator!=( DAQChannelKey key );
 
53
 
 
54
  friend std::ostream& operator<< ( std::ostream& stream, DAQChannelKey key );
 
55
  friend std::istream& operator>> ( std::istream& stream, DAQChannelKey &key )  throw(Squeal);
 
56
 
 
57
  std::string detector() {return _detector;}
 
58
 
 
59
  /** This function converts the DAQChannelKey into string.
 
60
  * \return String identifier.
 
61
  */
 
62
  std::string str();
 
63
 
 
64
  int ldc() const {return _ldcId;}
 
65
  int geo() const {return _geo;}
 
66
  int channel() const {return _channel;}
 
67
  int eqType() const {return _eqType;}
 
68
 
 
69
  /**  This function creates unique integer identifier.
 
70
  * \return Integer identifier.
 
71
  */
 
72
  int make_DAQChannelKey_id() { return _ldcId*1e8 + _geo*1e6 + _channel*1e3 + _eqType; }
 
73
 
 
74
 private:
 
75
 
 
76
  /// Id number of the Local Data Concentrator (DAQ computer).
 
77
  int _ldcId;
 
78
 
 
79
  /// Id number of the board.
 
80
  int _geo;
 
81
 
 
82
  /// Channel number.
 
83
  int _channel;
 
84
 
 
85
  /// Type of the equipement as coded in DATE.
 
86
  int _eqType;
 
87
 
 
88
  /// Name of the detector connected to this channel.
 
89
  std::string _detector;
 
90
};
 
91
 
 
92
//////////////////////////////////////////////////////////////////////////////////////////////
 
93
 
 
94
/** Complete map of all DAQ channels.
 
95
 * This class is used to hold and manage the informatin for all DAQ Channel.
 
96
 */
 
97
class DAQChannelMap {
 
98
 public:
 
99
 
 
100
  DAQChannelMap() {}
 
101
  virtual ~DAQChannelMap();
 
102
 
 
103
 /** Initialize the map from text file.
 
104
 * \param[in] filename name of the text file.
 
105
 * \returns true if the map is initialized successfully.
 
106
 */
 
107
  bool InitFromFile(std::string filename);
 
108
 
 
109
  /// Not implemented.
 
110
  bool InitFromCDB();
 
111
 
 
112
 /** Return pointer to the key.
 
113
 * This function returns pointer to the key for the required DAQ channel.
 
114
 * \param[in] ldc     Id number of the Local Data Concentrator (computer).
 
115
 * \param[in] geo     Id number of the board.
 
116
 * \param[in] ch      Channel number.
 
117
 * \param[in] eqType  Type of the equipement as coded in DATE.
 
118
 * \return The key of the DAQ channel.
 
119
 */
 
120
  DAQChannelKey* find(int ldc, int geo, int ch, int eqType);
 
121
 
 
122
 /** Return pointer to the key.
 
123
 * This function returns pointer to the key for the required DAQ channel.
 
124
 * \param[in] daqKeyStr the required key coded as string.
 
125
 * \return The key of the DAQ channel.
 
126
 */  
 
127
  DAQChannelKey* find(std::string daqKeyStr);
 
128
 
 
129
  /// Return the name of the detectro conected to this DAQ channel.
 
130
  std::string detector(int ldc, int geo, int ch, int eqType);
 
131
 
 
132
 private:
 
133
  /// vector holding DAQChannelKeys for all channels of the MICE DAQ system
 
134
  std::vector<DAQChannelKey*> _chKey;
 
135
};
 
136
 
 
137
 
 
138
#endif
 
139
 
 
140