]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSChannelSPD.cxx
Add Reaction Plane
[u/mrichter/AliRoot.git] / ITS / AliITSChannelSPD.cxx
index 488deb7630f7dad11c7043bfb71ec4e9a70fbb3f..88e1e13f7eeb156d6e8fbbf02ec88d91bfabd4e0 100644 (file)
 
 /*
 $Log$
+Revision 1.2  2005/11/03 13:09:19  hristov
+Removing meaningless const declarations (linuxicc)
+
+Revision 1.1  2005/10/11 12:31:50  masera
+Preprocessor classes for SPD (Paul Nilsson)
+
 */
 
 ///////////////////////////////////////////////////////////////////////////
@@ -53,12 +59,11 @@ fRow(-1)
 
 //__________________________________________________________________________
 AliITSChannelSPD::AliITSChannelSPD(const AliITSChannelSPD &ch) :
-  TObject(ch)
-{
+  TObject(ch),
+fColumn(ch.fColumn),
+fRow(ch.fRow){
   // Copy constructor
 
-  fColumn = ch.fColumn;
-  fRow = ch.fRow;
 }
 
 //__________________________________________________________________________
@@ -86,10 +91,10 @@ Bool_t AliITSChannelSPD::operator==(const AliITSChannelSPD &channel) const
 }
 
 //__________________________________________________________________________
-AliITSChannelSPD::AliITSChannelSPD(const Int_t column, const Int_t row)
-{
+AliITSChannelSPD::AliITSChannelSPD(Int_t column, Int_t row):
+fColumn(column),
+fRow(row){
   // Constructor for already existing channel
 
-  fColumn = column;
-  fRow = row;
+
 }