PandaRoot
L1XYMeasurementInfo.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 #ifndef L1XYMeasurementInfo_h
14 #define L1XYMeasurementInfo_h 1
15 
17 
18  //* information about measurement
19 
20  public:
21  L1XYMeasurementInfo() : C00(Vc::Zero), C10(Vc::Zero), C11(Vc::Zero) {}
22 
23  L1XYMeasurementInfo(const float_v &c00, const float_v &c10, const float_v &c11) : C00(c00), C10(c10), C11(c11) {}
24 
25  float_v C00, C10, C11;
26 };
27 
28 #endif
L1XYMeasurementInfo(const float_v &c00, const float_v &c10, const float_v &c11)