StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StTpcPadCoordinate.cc
1 /*******************************************************************
2  *
3  * $Id: StTpcPadCoordinate.cc,v 1.3 2008/05/27 14:26:40 fisyak Exp $
4  *
5  * Author: brian Feb 6, 1998
6  *
7  *******************************************************************
8  *
9  * Description: Raw data information along with access functions
10  *
11  *******************************************************************
12  *
13  * $Log: StTpcPadCoordinate.cc,v $
14  * Revision 1.3 2008/05/27 14:26:40 fisyak
15  * Use TChairs, absorb shift tau shift, introduce sector to sector time offset
16  *
17  * Revision 1.2 2000/02/02 23:01:39 calderon
18  * Changes for CC5
19  * Tests withs StTpcDb still going.
20  *
21  * Revision 1.1 1999/11/19 19:01:09 calderon
22  * First version of files for StDbUtilities.
23  * Note: this package uses StTpcDb.
24  * There are some parameters
25  * that are not yet kept in StTpcDb. When StTpcDb has them, the code
26  * will be changed to use them from StTpcDb.
27  * There are no Ftpc or Svt Coordinate transformations in here yet.
28  *
29  * Revision 1.1 1998/11/10 17:12:21 fisyak
30  * Put Brian trs versin into StRoot
31  *
32  * Revision 1.2 1998/11/01 16:20:34 lasiuk
33  * remove 'St' from variable declarations
34  *
35  * Revision 1.1 1998/05/21 21:27:57 lasiuk
36  * Initial revision
37  *
38  *
39  *******************************************************************/
40 #include "StTpcPadCoordinate.hh"
41 
42 static const char rcsid[] = "$Id: StTpcPadCoordinate.cc,v 1.3 2008/05/27 14:26:40 fisyak Exp $";
43 // Non-Member function
44 ostream& operator<<(ostream& os, const StTpcPadCoordinate& a)
45 {
46  return os << "(sector= " << a.sector()
47  << ", row= " << a.row()
48  << ", pad= " << a.pad()
49  << ", tbuck= " << a.timeBucket() << ")";
50 }