]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpVMotif.cxx
Commenting out StdoutToAliDebug which is, with the current AliLog
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpVMotif.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 // $Id$
17 // $MpId: AliMpVMotif.cxx,v 1.9 2006/05/24 13:58:41 ivana Exp $
18 // Category: motif
19 ///
20 // Class AliMpVMotif
21 // -----------------
22 // Class that defines a motif with its unique ID
23 // and the motif type.
24 // Included in AliRoot: 2003/05/02
25 // Authors: David Guez, Ivana Hrivnacova; IPN Orsay
26
27 #include "AliMpVMotif.h"
28 #include "AliMpMotifType.h"
29 #include "AliMpIntPair.h"
30 #include "AliMpConnection.h"
31
32 #include <Riostream.h>
33
34 #include <iomanip>
35
36 /// \cond CLASSIMP
37 ClassImp(AliMpVMotif)
38 /// \endcond
39
40 //_____________________________________________________________________________
41 AliMpVMotif::AliMpVMotif():
42   fID(""),
43   fMotifType(0)
44 {
45 /// Default constructor
46 }
47
48 //_____________________________________________________________________________
49 AliMpVMotif::AliMpVMotif(const TString &id, AliMpMotifType *motifType):
50   fID(id),
51   fMotifType(motifType)
52 {
53   /// Standard constructor.              
54   /// The dimension in a given direction is calculated by
55   /// multiplying the total dimension by the number of pads
56
57 }
58
59 //_____________________________________________________________________________
60 AliMpVMotif::~AliMpVMotif()
61 {
62   /// Destructor
63 }
64
65 //_____________________________________________________________________________
66 AliMpConnection* 
67 AliMpVMotif::FindConnectionByLocalPos(const TVector2& localPos) const
68 {
69   /// Return the local indices from the local
70   /// (x,y) position
71
72   AliMpIntPair padIndices=PadIndicesLocal(localPos);
73   if (padIndices.GetFirst()>=0)
74     return fMotifType->FindConnectionByLocalIndices(padIndices);
75   else
76     return 0;
77 }
78 //_____________________________________________________________________________
79 void AliMpVMotif::Print(Option_t *option) const
80 {
81   /// Print the map of the motif. In each cel, the value
82   /// printed depends of option, as the following:
83   /// - option="N" the "name" of the pad is written
84   /// - option="K" the Kapton connect. number attached to the pad is written
85   /// - option="B" the Berg connect. number attached to the pad is written
86   /// - option="X" the (X,Y) position, in cm, of the center of the pad is written
87   /// otherwise the number of the pad is written
88   ///
89   /// NOTE : this method is really not optimized, in case 'N' or '',
90   /// but the Print() this should not be very important in a Print() method
91
92   if (option[0]=='X') {
93
94     cout<<"(X,Y) mapping";
95     cout<<" in the motif "<<fID<<endl;
96     cout<<"-----------------------------------"<<endl;
97     for (Int_t j=fMotifType->GetNofPadsY()-1;j>=0;j--){
98       for (Int_t i=0;i<fMotifType->GetNofPadsX();i++){
99         AliMpIntPair indices = AliMpIntPair(i,j);
100         if (fMotifType->FindConnectionByLocalIndices(indices)){
101           TVector2 pos = PadPositionLocal(indices);
102           cout<<setw(11)<<Form("(%.1f,%.1f)",pos.X(),pos.Y());
103         }
104       }
105       cout<<endl;
106     }
107   } else fMotifType->Print(option);
108 }
109
110