~vpec/maus/tof_calib_read

« back to all changes in this revision

Viewing changes to tests/cpp_unit/Recon/Kalman/KalmanTrackFitTest.cc

  • Committer: Adam Dobbs
  • Date: 2015-06-26 14:33:50 UTC
  • mfrom: (659.1.113 release-candidate)
  • Revision ID: phuccj@gmail.com-20150626143350-m56pbthi31ahqvxj
Tags: MAUS-v0.9.6
MAUS-v0.9.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: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
 
#include "src/common_cpp/Recon/Kalman/KalmanTrackFit.hh"
19
 
#include "gtest/gtest.h"
20
 
 
21
 
namespace {
22
 
class KalmanTrackFitTest : public ::testing::Test {
23
 
 protected:
24
 
  KalmanTrackFitTest()  {}
25
 
  virtual ~KalmanTrackFitTest() {}
26
 
  virtual void SetUp()    {}
27
 
  virtual void TearDown() {}
28
 
  static const double err = 1.e-4;
29
 
};
30
 
 
31
 
TEST_F(KalmanTrackFitTest, none) {
32
 
  // MAUS::KalmanTrackFit *manager;
33
 
}
34
 
} // namespace