~mwinter4/maus/ckov-update

« back to all changes in this revision

Viewing changes to src/common_cpp/JsonCppProcessors/EMRDaqProcessor.hh

  • Committer: Durga Rajaram
  • Date: 2014-01-14 07:07:02 UTC
  • mfrom: (659.1.80 relcand)
  • Revision ID: durga@fnal.gov-20140114070702-2l1fuj1w6rraw7xe
Tags: MAUS-v0.7.6
MAUS-v0.7.6

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/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
#ifndef _SRC_COMMON_CPP_JSONCPPPROCESSORS_EMRDAQPROCESSOR_
 
18
#define _SRC_COMMON_CPP_JSONCPPPROCESSORS_EMRDAQPROCESSOR_
 
19
 
 
20
#include "src/common_cpp/DataStructure/EMRDaq.hh"
 
21
#include "src/common_cpp/JsonCppProcessors/ArrayProcessors.hh"
 
22
#include "src/common_cpp/JsonCppProcessors/ObjectProcessor.hh"
 
23
#include "src/common_cpp/JsonCppProcessors/V1731Processor.hh"
 
24
#include "src/common_cpp/JsonCppProcessors/DBBSpillDataProcessor.hh"
 
25
 
 
26
namespace MAUS {
 
27
 
 
28
/** @class EMRDaqProcessor Conversions for EMRDaq between C++ and Json 
 
29
 *
 
30
 *  @var _V1731_proc_proc Processor for _V1731 (fADC)
 
31
 *  @var _dbb_proc_proc Processor for _DBB (Digital Buffer Board)
 
32
 */
 
33
 
 
34
class EMRDaqProcessor : public ObjectProcessor<EMRDaq> {
 
35
  public:
 
36
    /** Set up processors and register branches
 
37
     *
 
38
     *  Everything else is handled by the base class
 
39
     */
 
40
    EMRDaqProcessor();
 
41
 
 
42
  private:
 
43
    ValueArrayProcessor<V1731HitArray> _V1731_proc;
 
44
    ValueArrayProcessor<DBBSpillData> _dbb_proc;
 
45
};
 
46
}  // namespace MAUS
 
47
 
 
48
#endif  // #define _SRC_COMMON_CPP_JSONCPPPROCESSORS_EMRDAQPROCESSOR_
 
49