]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Adding new calibration parameter class, a little bit more generic than before
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 20 Mar 2007 15:11:34 +0000 (15:11 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 20 Mar 2007 15:11:34 +0000 (15:11 +0000)
(Laurent)

MUON/AliMUONCalibParamNF.cxx [new file with mode: 0644]
MUON/AliMUONCalibParamNF.h [new file with mode: 0644]

diff --git a/MUON/AliMUONCalibParamNF.cxx b/MUON/AliMUONCalibParamNF.cxx
new file mode 100644 (file)
index 0000000..97e6d7f
--- /dev/null
@@ -0,0 +1,242 @@
+/**************************************************************************
+* Copyright(c) 1998-1999, 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$
+
+#include "AliMUONCalibParamNF.h"
+
+#include "AliLog.h"
+
+#include "Riostream.h"
+#include "TMath.h"
+#include "TString.h"
+
+///
+/// \class AliMUONCalibParamNF
+///
+/// Handle the case of N floating point parameters per channel.
+///
+/// \author Laurent Aphecetche
+
+/// \cond CLASSIMP
+ClassImp(AliMUONCalibParamNF)
+/// \endcond
+
+//_____________________________________________________________________________
+AliMUONCalibParamNF::AliMUONCalibParamNF() 
+: AliMUONVCalibParam(),
+  fDimension(0),
+  fSize(0),
+  fN(0),
+  fValues(0x0)
+{
+/// Default constructor.
+}
+
+//_____________________________________________________________________________
+AliMUONCalibParamNF::AliMUONCalibParamNF(Int_t dimension, Int_t theSize, Float_t fillWithValue) 
+: AliMUONVCalibParam(),
+  fDimension(dimension),
+  fSize(theSize),
+  fN(fSize*fDimension),
+  fValues(0x0)
+{
+/// Normal constructor, where theSize specifies the number of channels handled
+/// by this object, and fillWithValue the default value assigned to each
+/// channel.
+
+  if ( fN > 0 )
+  {
+    fValues = new Float_t[fN];
+    for ( Int_t i = 0; i < fN; ++i )
+    {
+      fValues[i] = fillWithValue;
+    }
+  }
+}
+
+
+//_____________________________________________________________________________
+AliMUONCalibParamNF::AliMUONCalibParamNF(const AliMUONCalibParamNF& other) 
+: AliMUONVCalibParam(),
+fDimension(0),
+fSize(0),
+fN(0),
+fValues(0x0)
+{
+/// Copy constructor.
+
+  other.CopyTo(*this);
+}
+
+//_____________________________________________________________________________
+AliMUONCalibParamNF&
+AliMUONCalibParamNF::operator=(const AliMUONCalibParamNF& other) 
+{
+/// Assignment operator
+
+  other.CopyTo(*this);
+  return *this;
+}
+
+//_____________________________________________________________________________
+AliMUONCalibParamNF::~AliMUONCalibParamNF()
+{
+/// Destructor
+
+  delete[] fValues;
+}
+
+//_____________________________________________________________________________
+void
+AliMUONCalibParamNF::CopyTo(AliMUONCalibParamNF& destination) const
+{
+/// Copy *this to destination
+
+  delete[] destination.fValues;
+  destination.fN = fN;
+  destination.fSize = fSize;
+  destination.fDimension = fDimension;
+  
+  if ( fN > 0 )
+  {
+    destination.fValues = new Float_t[fN];
+    for ( Int_t i = 0; i < fN; ++i )
+    {
+      destination.fValues[i] = fValues[i];
+    }
+  }
+}
+
+//_____________________________________________________________________________
+Int_t
+AliMUONCalibParamNF::Index(Int_t i, Int_t j) const
+{
+/// Compute the 1D index of the internal storage from the pair (i,j)
+/// Returns -1 if the (i,j) pair is invalid
+
+  if ( i >= 0 && i < Size() && j >= 0 && j < Dimension() )
+  {
+    return i + Size()*j;
+  }
+  return -1;
+}
+
+//_____________________________________________________________________________
+void
+AliMUONCalibParamNF::Print(Option_t* opt) const
+{
+/// Output this object to stdout.
+/// If opt=="full", then all channels are printed, 
+/// if opt=="mean#", only the mean and sigma value are printed for j-th dimension
+/// otherwise only the general characteristics are printed.
+
+  TString sopt(opt);
+  sopt.ToUpper();
+  cout << "AliMUONCalibParamNF - Size=" << Size()
+    << " Dimension=" << Dimension() << endl;
+  if ( sopt.Contains("FULL") )
+  {
+    for ( Int_t i = 0; i < Size(); ++i )
+    {
+      cout << Form("CH %3d",i);
+      for ( Int_t j = 0; j < Dimension(); ++j )
+      {
+        cout << Form(" %e",ValueAsFloat(i,j));
+      }
+      cout << endl;
+    }
+  }  
+  if ( sopt.Contains("MEAN") )
+  {
+    Int_t j(0);
+    sscanf(sopt.Data(),"MEAN%d",&j);
+    
+    Float_t mean(0);
+    Float_t v2(0);
+    
+    Int_t n = Size();
+    
+    for ( Int_t i = 0; i < Size(); ++i )
+    {
+      Float_t v = ValueAsFloat(i,j);
+      mean += v;
+      v2 += v*v;
+    }
+    mean /= n;
+    float sigma = 0;
+    if ( n > 1 ) sigma = TMath::Sqrt( (v2-n*mean*mean)/(n-1) );
+    cout << Form(" Mean(j=%d)=%e Sigma(j=%d)=%e",j,mean,j,sigma) << endl;
+  }
+  
+}
+
+//_____________________________________________________________________________
+void
+AliMUONCalibParamNF::SetValueAsFloat(Int_t i, Int_t j, Float_t value)
+{
+/// Set one value as a float, after checking that the indices are correct.
+
+  Int_t ix = Index(i,j);
+  
+  if ( ix < 0 )
+  {
+    AliError(Form("Invalid (i,j)=(%d,%d) max allowed is (%d,%d)",
+                  i,j,Size()-1,Dimension()-1));
+  }
+  else
+  {
+    fValues[ix]=value;
+  }
+}
+
+//_____________________________________________________________________________
+void
+AliMUONCalibParamNF::SetValueAsInt(Int_t i, Int_t j, Int_t value)
+{
+/// Set one value as an int.
+
+  SetValueAsFloat(i,j,static_cast<Float_t>(value));
+}
+
+//_____________________________________________________________________________
+Float_t
+AliMUONCalibParamNF::ValueAsFloat(Int_t i, Int_t j) const
+{
+/// Return the value as a float (which it is), after checking indices.
+
+  Int_t ix = Index(i,j);
+  
+  if ( ix < 0 )
+  {
+    AliError(Form("Invalid (i,j)=(%d,%d) max allowed is (%d,%d)",
+                  i,j,Size()-1,Dimension()-1));
+    return 0.0;
+  }
+  else
+  {
+    return fValues[ix];
+  }
+}
+
+//_____________________________________________________________________________
+Int_t
+AliMUONCalibParamNF::ValueAsInt(Int_t i, Int_t j) const
+{
+/// Return the value as an int, by rounding the internal float value.
+
+  Float_t v = ValueAsFloat(i,j);
+  return TMath::Nint(v);
+}
diff --git a/MUON/AliMUONCalibParamNF.h b/MUON/AliMUONCalibParamNF.h
new file mode 100644 (file)
index 0000000..2a4909c
--- /dev/null
@@ -0,0 +1,58 @@
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+* See cxx source for full Copyright notice                               */
+
+// $Id$
+
+/// \ingroup base
+/// \class AliMUONCalibParamNF
+/// \brief Implementation of AliMUONVCalibParam for tuples of floats
+/// 
+//  Author Laurent Aphecetche
+
+#ifndef ALIMUONCALIBPARAMNF_H
+#define ALIMUONCALIBPARAMNF_H
+
+#ifndef ALIMUONVCALIBPARAM_H
+#  include "AliMUONVCalibParam.h"
+#endif
+
+class AliMUONCalibParamNF : public AliMUONVCalibParam
+{
+public:
+  AliMUONCalibParamNF();
+  AliMUONCalibParamNF(Int_t dimension, Int_t theSize, Float_t fillWithValue=0);
+  AliMUONCalibParamNF(const AliMUONCalibParamNF& other);
+  AliMUONCalibParamNF& operator=(const AliMUONCalibParamNF& other);
+  
+  virtual ~AliMUONCalibParamNF();
+
+  /// Return dimension
+  virtual Int_t Dimension() const { return fDimension; }
+  
+  virtual void Print(Option_t* opt="") const;
+  
+  virtual void SetValueAsFloat(Int_t i, Int_t j, Float_t value);
+  virtual void SetValueAsInt(Int_t i, Int_t j, Int_t value);
+  
+  /// Return size - the number of float pair we hold
+  virtual Int_t Size() const { return fSize; } 
+
+  virtual Float_t ValueAsFloat(Int_t i, Int_t j=0) const;
+  virtual Int_t ValueAsInt(Int_t i, Int_t j=0) const;
+     
+private:
+  void CopyTo(AliMUONCalibParamNF& destination) const;
+  Int_t Index(Int_t i, Int_t j) const;  
+    
+private:
+  Int_t fDimension; ///< dimension of this object
+  Int_t fSize; ///< The number of float pair we hold
+  Int_t fN;    ///< The total number of floats we hold (fDimension*fSize)
+
+  /// The values array
+  Float_t* fValues; //[fN] The values array
+  
+  ClassDef(AliMUONCalibParamNF,1) // Container for calibration parameters
+};
+
+#endif