~christopher-hunt08/maus/maus_integrated_kalman

« back to all changes in this revision

Viewing changes to src/common_cpp/JsonCppProcessors/Global/PIDLogLPairProcessor.cc

merging in changes in merge branch

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 "src/common_cpp/JsonCppProcessors/Global/PIDLogLPairProcessor.hh"
 
18
 
 
19
namespace MAUS {
 
20
namespace Processor {
 
21
namespace Global {
 
22
 
 
23
PIDLogLPairProcessor::PIDLogLPairProcessor() {
 
24
 
 
25
  RegisterValueBranch(
 
26
        "pid", &_int_proc,
 
27
        &MAUS::DataStructure::Global::PIDLogLPair::get_PID,
 
28
        &MAUS::DataStructure::Global::PIDLogLPair::set_PID, true);
 
29
 
 
30
  RegisterValueBranch(
 
31
        "logL", &_double_proc,
 
32
        &MAUS::DataStructure::Global::PIDLogLPair::get_logL,
 
33
        &MAUS::DataStructure::Global::PIDLogLPair::set_logL, true);
 
34
}
 
35
} // ~namespace Global
 
36
} // ~namespace Processor
 
37
} // ~namespace MAUS
 
38
 
 
39