/************************************************************************** * Copyright(c) 2004, ALICE Experiment at CERN, All rights reserved. * * * * Author: The ALICE Off-line Project. * * Contributors are mentioned in the code where appropriate. * * * * Permission to use, copy, modify and distribute this software and its * * documentation strictly for non-commercial purposes is hereby granted * * without fee, provided that the above copyright notice appears in all * * copies and that both the copyright notice and this permission notice * * appear in the supporting documentation. The authors make no claims * * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ /* $Id$ */ /** @file AliFMDDigit.cxx @author Christian Holm Christensen @date Mon Mar 27 12:37:41 2006 @brief Digits for the FMD */ ////////////////////////////////////////////////////////////////////// // // Digits classes for the FMD // // Digits consists of // - Detector # // - Ring ID // - Sector # // - Strip # // - ADC count in this channel // // Digits consists of // - Detector # // - Ring ID // - Sector # // - Strip # // - Total energy deposited in the strip // - ADC count in this channel // // As the Digits and SDigits have so much in common, the classes // AliFMDDigit and AliFMDSDigit are implemented via a base // class AliFMDBaseDigit. /// // +-----------------+ // | AliFMDBaseDigit | // +-----------------+ // ^ // | // +------------+ // | | // +-------------+ +--------------+ // | AliFMDDigit | | AliFMDSDigit | // +-------------+ +--------------+ // // (Note, that I'd really would have liked to implement AliFMDHit as a // derived class from some base class - say AliFMDStrip, and the Digit // classes would (eventually) have derived from that as well. // However, ROOT doesn't do well with multiple inheritance, so I chose // not to anyway). // // Latest changes by Christian Holm Christensen // ////////////////////////////////////////////////////////////////////// #include "AliFMDDigit.h" // ALIFMDDIGIT_H #include "Riostream.h" // ROOT_Riostream #include //==================================================================== ClassImp(AliFMDDigit) #if 0 ; // Here to make Emacs happy #endif //____________________________________________________________________ AliFMDDigit::AliFMDDigit() : fCount1(0), fCount2(-1), fCount3(-1), fCount4(-1) { // CTOR } //____________________________________________________________________ AliFMDDigit::AliFMDDigit(UShort_t detector, Char_t ring, UShort_t sector, UShort_t strip, UShort_t count1, Short_t count2, Short_t count3, Short_t count4, UShort_t nrefs, Int_t* refs) : AliFMDBaseDigit(detector, ring, sector, strip), fCount1(count1), fCount2(count2), fCount3(count3), fCount4(count4) { // // Creates a real data digit object // // Parameters // // detector Detector # (1, 2, or 3) // ring Ring ID ('I' or 'O') // sector Sector # (For inner/outer rings: 0-19/0-39) // strip Strip # (For inner/outer rings: 0-511/0-255) // count1 ADC count (a 10-bit word) // count2 ADC count (a 10-bit word) -1 if not used // count3 ADC count (a 10-bit word) -1 if not used if (!refs) return; for (Int_t i = 0; i < nrefs; i++) AddTrack(refs[i]); } //____________________________________________________________________ const char* AliFMDDigit::GetTitle() const { // Get the title static TString t; t = Form("ADC: %d", Counts()); return t.Data(); } //____________________________________________________________________ void AliFMDDigit::Print(Option_t* option) const { // Print digit to standard out AliFMDBaseDigit::Print(); std::cout << "\t" << std::setw(4) << fCount1 << " (" << std::setw(4) << fCount2 << "," << std::setw(4) << fCount3 << "," << std::setw(4) << fCount4 << ") = " << std::setw(4) << Counts() << std::flush; TString opt(option); if (opt.Contains("l", TString::kIgnoreCase)) { std::cout << " "; for (Int_t i = 0; i < 3; i++) std::cout << (i == 0 ? "" : ",") << std::setw(5) << fTracks[i]; } std::cout << std::endl; } //____________________________________________________________________ // // EOF //