]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDRecPoint.cxx
Added code to put N_primary and N_total into all SDigits.
[u/mrichter/AliRoot.git] / FMD / AliFMDRecPoint.cxx
CommitLineData
56b1929b 1/**************************************************************************
2 * Copyright(c) 2004, 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 **************************************************************************/
56b1929b 15/* $Id$ */
c2fc1258 16/** @file AliFMDRecPoint.cxx
17 @author Christian Holm Christensen <cholm@nbi.dk>
18 @date Mon Mar 27 12:46:26 2006
19 @brief Pseudo reconstructed charged particle multiplicity
20*/
56b1929b 21//____________________________________________________________________
22//
bf000c32 23// Base class for reconstructed charged particle multiplicty in the
24// FMD.
25// The class contains the field fMethod which is a flag set by
26// the AliFMDRecPointAlgorithm that created the object. The flag tells us
27// which algorithm was used to create the data stored in the object.
7684b53c 28//
bf000c32 29#include "AliFMDRecPoint.h" // ALIFMDRECPOINT_H
30#include <TString.h> // ROOT_TString
56b1929b 31#include <Riostream.h> // ROOT_Riostream
32
33//____________________________________________________________________
bf000c32 34ClassImp(AliFMDRecPoint)
1a1fdef7 35#if 0
36 ; // This is here to keep Emacs for indenting the next line
37#endif
56b1929b 38
56b1929b 39//____________________________________________________________________
bf000c32 40AliFMDRecPoint::AliFMDRecPoint()
56b1929b 41 : fDetector(0),
42 fRing('\0'),
43 fSector(0),
44 fStrip(0),
45 fEta(0),
46 fPhi(0),
b5ee4425 47 fEdep(0),
48 fParticles(0)
02a27b50 49{
50 // CTOR
51}
56b1929b 52
53//____________________________________________________________________
bf000c32 54AliFMDRecPoint::AliFMDRecPoint(UShort_t detector, Char_t ring,
55 UShort_t sector, UShort_t strip,
56 Float_t eta, Float_t phi,
57 Float_t edep, Float_t particles)
58 : fDetector(detector),
56b1929b 59 fRing(ring),
60 fSector(sector),
61 fStrip(strip),
62 fEta(eta),
63 fPhi(phi),
bf000c32 64 fEdep(edep),
65 fParticles(particles)
66{
67}
56b1929b 68
bf000c32 69//____________________________________________________________________
70const char*
71AliFMDRecPoint::GetName() const
72{
02a27b50 73 // Get the name
bf000c32 74 static TString n;
75 n = Form("FMD%d%c[%2d,%3d]", fDetector,fRing,fSector,fStrip);
76 return n.Data();
77}
78
79//____________________________________________________________________
80const char*
81AliFMDRecPoint::GetTitle() const
82{
02a27b50 83 // Get the title
bf000c32 84 static TString t;
85 t = Form("%f (%f,%f)", fParticles, fEta, fPhi);
86 return t.Data();
87}
56b1929b 88
89//____________________________________________________________________
90void
bf000c32 91AliFMDRecPoint::Print(Option_t* option) const
56b1929b 92{
93 // Print information
94 //
95 // Options:
96 // D: Detector (default)
97 // E: Eta range (default)
98 // P: Phi range (default)
99 //
100 TString opt(option);
bf000c32 101 cout << "FMD RecPoint in a strip: " << fParticles << endl;
56b1929b 102 if (opt.Contains("D", TString::kIgnoreCase))
103 cout << " Detector: FMD" << fDetector << fRing
104 << "[" << fSector << "," << fStrip << "]" << endl;
105 if (opt.Contains("E", TString::kIgnoreCase))
106 cout << " Eta range: " << fEta << endl;
107 if (opt.Contains("P", TString::kIgnoreCase))
108 cout << " Phi range: " << fPhi << endl;
56b1929b 109}
110
111
112//____________________________________________________________________
113//
114// EOF
115//