]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/global/AliFlatTPCseed.cxx
little changes
[u/mrichter/AliRoot.git] / HLT / global / AliFlatTPCseed.cxx
1 /* $Id$ */
2
3 /**************************************************************************
4  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  *                                                                        *
6  * Author: The ALICE Off-line Project.                                    *
7  * Contributors are mentioned in the code where appropriate.              *
8  *                                                                        *
9  * Permission to use, copy, modify and distribute this software and its   *
10  * documentation strictly for non-commercial purposes is hereby granted   *
11  * without fee, provided that the above copyright notice appears in all   *
12  * copies and that both the copyright notice and this permission notice   *
13  * appear in the supporting documentation. The authors make no claims     *
14  * about the suitability of this software for any purpose. It is          *
15  * provided "as is" without express or implied warranty.                  *
16  **************************************************************************/
17
18 /**
19  * >> Flat structure representing a TPC seed <<
20  *
21  * To be used in the online and offline calibration schema.
22  *
23  *
24  * Primary Authors : Sergey Gorbunov, Jochen Thaeder, Chiara Zampolli
25  *
26  **************************************************************************/
27
28 #include "AliFlatTPCseed.h"
29 #include "Riostream.h"
30
31 AliFlatTPCseed::AliFlatTPCseed()
32   :
33   fContentSize(0)
34 {
35   // constructor
36   fContent[0]=0;
37 }
38
39 void AliFlatTPCseed::Reset()
40 {
41   // Reset
42 }
43
44 void AliFlatTPCseed::SetFromTPCseed( const AliTPCseed *p )
45 {
46   // initialise from AliTPCseed
47
48 }
49
50 void AliFlatTPCseed::GetTPCseed( AliTPCseed *p ) const
51 {
52   // write to AliTPCseed
53
54 }