PandaRoot
PndCAX1X2MeasurementInfo.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 //-*- Mode: C++ -*-
14 // *****************************************************************************
15 // *
16 // @Autors: I.Kulakov; M.Zyzak; I.Kisel *
17 // @e-mail: I.Kulakov@gsi.de; M.Zyzak@gsi.de; I.Kisel@compeng.uni-frankfurt.de *
18 // *
19 // *****************************************************************************
20 
21 #ifndef PNDCAX1X2MEASUREMENTINFO_H
22 #define PNDCAX1X2MEASUREMENTINFO_H
23 
25  public:
26  PndCAX1X2MeasurementInfo(const float_v &c00, const float_v &c10, const float_v &c11) : fC00(c00), fC10(c10), fC11(c11) {}
27 
28  const float_v &C00() const { return fC00; }
29  const float_v &C10() const { return fC10; }
30  const float_v &C11() const { return fC11; }
31 
32  private:
33  float_v fC00, fC10, fC11; // c00 = <x1,x1>; c10 = <x2,x1>; c11 = <x2,x2>
34 };
35 
36 #endif
const float_v & C00() const
const float_v & C11() const
const float_v & C10() const
PndCAX1X2MeasurementInfo(const float_v &c00, const float_v &c10, const float_v &c11)