PandaRoot
Tuple.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 /*
14  * Tuple.h
15  *
16  * Created on: Jun 2, 2016
17  * Author: kibellus
18  */
19 #include <iostream>
20 #include "PndLineApproximation.h"
21 
22 #ifndef PNDTOOLS_PNDFORWARDTRACKFINDER_TUPLE_H_
23 #define PNDTOOLS_PNDFORWARDTRACKFINDER_TUPLE_H_
24 
25 class Tuple {
26  public:
27  Tuple(PndLineApproximation xp, Int_t yp) : x(xp), y(yp) {}
28  virtual ~Tuple();
29 
31  Int_t y;
32 };
33 
34 #endif /* PNDTOOLS_PNDFORWARDTRACKFINDER_TUPLE_H_ */
Int_t y
Definition: Tuple.h:31
Definition: Tuple.h:25
virtual ~Tuple()
Tuple(PndLineApproximation xp, Int_t yp)
Definition: Tuple.h:27
PndLineApproximation x
Definition: Tuple.h:30