]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RALICE/AliSignal.h
25-apr-2002 NvE Projectile and target specifications introduced in AliEvent.
[u/mrichter/AliRoot.git] / RALICE / AliSignal.h
1 #ifndef ALISIGNAL_H
2 #define ALISIGNAL_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 // $Id$
7
8 #include "TObject.h"
9 #include "TArrayF.h"
10
11 #include "AliPosition.h"
12
13 class AliSignal : public TObject,public AliPosition
14 {
15  public:
16   AliSignal(Int_t n=1);                                 // Default constructor
17   ~AliSignal();                                         // Destructor
18   AliSignal(AliSignal& s);                              // Copy constructor
19   virtual void SetSignal(Double_t sig,Int_t j=1);       // Store j-th signal value
20   virtual void AddSignal(Double_t sig,Int_t j=1);       // Add value to j-th signal value
21   virtual Float_t GetSignal(Int_t j=1);                 // Provide j-th signal value
22   virtual void SetSignalError(Double_t dsig,Int_t j=1); // Store error on j-th signal value
23   virtual Float_t GetSignalError(Int_t j=1);            // Provide error j-th signal value
24   virtual void ResetSignals();                          // Reset all signal values and errors to 0
25   virtual void ResetPosition();                         // Reset position and errors to 0
26   virtual void Reset();                                 // Reset signal and pos. values and errors
27   void Info(TString f="car");                           // Print signal info for coord. frame f
28   void SetName(TString name);                           // Set the name tag to indicate the kind of signal
29   TString GetName();                                    // Provide the name tag indicating the kind of signal
30   Int_t GetNvalues();                                   // Provide the number of signal values
31
32  protected:
33   Int_t fNvalues;    // The number of values per signal
34   TArrayF* fSignal;  // Signal values
35   TArrayF* fDsignal; // Errors on signal values
36   TString fName;     // Name tag to identify the kind of signal
37
38  ClassDef(AliSignal,3) // Handling of ALICE (extrapolated) signals.
39 };
40 #endif