~mbogomilov/maus/devel3

« back to all changes in this revision

Viewing changes to tests/cpp_unit/JsonCppProcessors/DAQProcessorTest.cc

  • 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
#include <string>
 
18
 
 
19
#include "gtest/gtest.h"
 
20
 
 
21
#include "src/common_cpp/Utils/JsonWrapper.hh"
 
22
 
 
23
#include "src/common_cpp/JsonCppProcessors/DBBHitProcessor.hh"
 
24
#include "src/common_cpp/JsonCppProcessors/DBBSpillDataProcessor.hh"
 
25
#include "src/common_cpp/JsonCppProcessors/EMRDaqProcessor.hh"
 
26
#include "src/common_cpp/JsonCppProcessors/DAQDataProcessor.hh"
 
27
 
 
28
#include "tests/cpp_unit/JsonCppProcessors/CommonProcessorTest.hh"
 
29
 
 
30
 
 
31
namespace MAUS {
 
32
namespace DAQProcessorTest {
 
33
 
 
34
std::string DBBHIT =
 
35
        std::string("{\"channel\":-1,\"geo\":-2,")+
 
36
        std::string("\"ldc\":-4,\"leading_edge_time\":5,")+
 
37
        std::string("\"trailing_edge_time\":6}");
 
38
 
 
39
std::string DBBSPILLDATA =
 
40
        std::string("{\"ldc_id\":-1,\"dbb_id\":-2,\"spill_number\":-4,")+
 
41
        std::string("\"spill_width\":-5,\"trigger_count\":-6,")+
 
42
        std::string("\"hit_count\":-7,\"time_stamp\":-8,\"detector\":\"abc\",")+
 
43
        std::string("\"dbb_hits\":["+DBBHIT+","+DBBHIT+"],")+
 
44
        std::string("\"dbb_triggers\":["+DBBHIT+","+DBBHIT+"]}");
 
45
 
 
46
std::string EMRDAQ =
 
47
        std::string("{\"V1731\":[], \"dbb\":[")+DBBSPILLDATA+","+DBBSPILLDATA+
 
48
        std::string("]}");
 
49
 
 
50
 
 
51
std::string DAQDATA =
 
52
        std::string("{\"trigger_request\":[],")+
 
53
        std::string("\"tof0\":[],")+
 
54
        std::string("\"tof1\":[],")+
 
55
        std::string("\"tof2\":[],")+
 
56
        std::string("\"ckov\":[],")+
 
57
        std::string("\"unknown\":[],")+
 
58
        std::string("\"kl\":[],")+
 
59
        std::string("\"tag\":[],")+
 
60
        std::string("\"trigger\":[],")+
 
61
        std::string("\"emr\":"+EMRDAQ+"}");
 
62
 
 
63
TEST(DAQProcessorTest, DBBHitProcessorTest) {
 
64
    DBBHitProcessor proc;
 
65
    ProcessorTest::test_value(&proc, DBBHIT);
 
66
}
 
67
 
 
68
TEST(DAQProcessorTest, DBBSpillDataProcessorTest) {
 
69
    DBBSpillDataProcessor proc;
 
70
    ProcessorTest::test_value(&proc, DBBSPILLDATA);
 
71
}
 
72
 
 
73
TEST(DAQProcessorTest, EMRDaqProcessorTest) {
 
74
    EMRDaqProcessor proc;
 
75
    ProcessorTest::test_value(&proc, EMRDAQ);
 
76
}
 
77
 
 
78
// TEST(DAQProcessorTest, DAQDataProcessorTest) {
 
79
//    DAQDataProcessor proc;
 
80
//    ProcessorTest::test_value(&proc, DAQDATA);
 
81
// }
 
82
} // DAQPROCESSORTEST
 
83
} // MAUS
 
84