~ajdobbs/maus/event-selection

« back to all changes in this revision

Viewing changes to src/common_cpp/Converter/DataConverters/CppJsonRunFooterConverter.cc

  • Committer: Chris Rogers
  • Date: 2012-09-20 16:06:44 UTC
  • mto: (663.23.1 _maus_merge)
  • mto: This revision was merged to the branch mainline in revision 676.
  • Revision ID: chris.rogers@stfc.ac.uk-20120920160644-fcebucjuftmzfxyl
Now able to write job header. job footer, run header, run footer - but some fails in integration tests

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
 
 
18
#include "src/common_cpp/Converter/DataConverters/CppJsonRunFooterConverter.hh"
 
19
 
 
20
#include "src/common_cpp/DataStructure/RunFooterData.hh"
 
21
#include "src/common_cpp/JsonCppProcessors/RunFooterProcessor.hh"
 
22
 
 
23
namespace MAUS {
 
24
 
 
25
Json::Value* CppJsonRunFooterConverter::_convert(const RunFooterData* data) const {
 
26
  if (data == NULL || data->GetRunFooter() == NULL)
 
27
      return new Json::Value();
 
28
  Json::Value* my_json = RunFooterProcessor().CppToJson(*data->GetRunFooter());
 
29
  return my_json;
 
30
}
 
31
}
 
32