FairRoot/PandaRoot
Tuple.h
Go to the documentation of this file.
1 /*
2  * Tuple.h
3  *
4  * Created on: Jun 2, 2016
5  * Author: kibellus
6  */
7 #include <iostream>
8 #include "PndLineApproximation.h"
9 
10 #ifndef PNDTOOLS_PNDFORWARDTRACKFINDER_TUPLE_H_
11 #define PNDTOOLS_PNDFORWARDTRACKFINDER_TUPLE_H_
12 
13 class Tuple {
14 public:
15  Tuple(PndLineApproximation xp, Int_t yp) : x(xp),y(yp){}
16  virtual ~Tuple();
17 
19  Int_t y;
20 };
21 
22 #endif /* PNDTOOLS_PNDFORWARDTRACKFINDER_TUPLE_H_ */
Int_t y
Definition: Tuple.h:19
Definition: Tuple.h:13
virtual ~Tuple()
Definition: Tuple.cxx:3
Tuple(PndLineApproximation xp, Int_t yp)
Definition: Tuple.h:15
PndLineApproximation x
Definition: Tuple.h:18