]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFCalPlateB.cxx
CMake: removing qpythia from the depedencies
[u/mrichter/AliRoot.git] / TOF / AliTOFCalPlateB.cxx
index 7bda20c04809fd56adf03cc8a85058887e84a6a3..39513fe2ac5f3086527005e7469369a5c8dcdf27 100644 (file)
 
 /*
 $Log$
+Revision 1.6  2006/04/20 22:30:49  hristov
+Coding conventions (Annalisa)
+
+Revision 1.5  2006/04/16 22:29:05  hristov
+Coding conventions (Annalisa)
+
+Revision 1.4  2006/04/05 08:35:38  hristov
+Coding conventions (S.Arcelli, C.Zampolli)
+
 Revision 1.3  2006/03/28 14:57:48  arcelli
 updates to handle new V5 geometry & some re-arrangements
 
@@ -33,54 +42,63 @@ author: Chiara Zampolli, zampolli@bo.infn.it
 //                                                                           //
 ///////////////////////////////////////////////////////////////////////////////
 
-#include "TObject.h"
-#include "TROOT.h"
 #include "TBrowser.h"
-#include "TClass.h"
+
 #include "AliLog.h"
-#include "AliTOFGeometryV5.h"
-#include "AliTOFCalStrip.h"
+
 #include "AliTOFCalPlateB.h"
+#include "AliTOFCalStrip.h"
 #include "AliTOFChannel.h"
+#include "AliTOFGeometryV5.h"
 
 ClassImp(AliTOFCalPlateB)
 
 //________________________________________________________________
 
-AliTOFCalPlateB::AliTOFCalPlateB(){
+AliTOFCalPlateB::AliTOFCalPlateB():
+  fNStripB(0),
+  fNpadZ(0),
+  fNpadX(0),
+  fGeom(0x0), 
+  fCh(0x0)
+{
   //main ctor
-  fCh = 0;
-  fGeom= 0x0; 
-  fNStripB = 0;
-  fNpadZ = 0;
-  fNpadX = 0;
 }
 //________________________________________________________________
 
-AliTOFCalPlateB::AliTOFCalPlateB(AliTOFChannel *ch) : fCh(ch)
+AliTOFCalPlateB::AliTOFCalPlateB(AliTOFChannel *ch) : 
+  fNStripB(0),
+  fNpadZ(0),
+  fNpadX(0),
+  fGeom(0x0), 
+  fCh(ch)
 {
   //ctor with channel
-  fGeom= 0x0; 
-  fNStripB = 0;
-  fNpadZ = 0;
-  fNpadX = 0;
 }
 //________________________________________________________________
 
-AliTOFCalPlateB::AliTOFCalPlateB(AliTOFGeometry *geom){
+AliTOFCalPlateB::AliTOFCalPlateB(AliTOFGeometry *geom):
+  fNStripB(0),
+  fNpadZ(0),
+  fNpadX(0),
+  fGeom(geom), 
+  fCh(0x0)
+{
   //ctor with geom
-  fCh = 0;
-  fGeom = geom;  
   fNStripB = fGeom->NStripB();
   fNpadZ = fGeom->NpadZ();
   fNpadX = fGeom->NpadX();
 }
 //________________________________________________________________
 
-AliTOFCalPlateB::AliTOFCalPlateB(AliTOFGeometry *geom, AliTOFChannel *ch): fCh(ch)
+AliTOFCalPlateB::AliTOFCalPlateB(AliTOFGeometry *geom, AliTOFChannel *ch): 
+  fNStripB(0),
+  fNpadZ(0),
+  fNpadX(0),
+  fGeom(geom), 
+  fCh(ch)
 {
   //ctor with channel and geom
-  fGeom = geom;  
   fNStripB = fGeom->NStripB();
   fNpadZ = fGeom->NpadZ();
   fNpadX = fGeom->NpadX();
@@ -97,7 +115,12 @@ AliTOFCalPlateB::~AliTOFCalPlateB()
 //________________________________________________________________
 
 AliTOFCalPlateB::AliTOFCalPlateB(const AliTOFCalPlateB& pl):
-  TObject(pl)
+  TObject(pl),
+  fNStripB(0),
+  fNpadZ(0),
+  fNpadX(0),
+  fGeom(0x0), 
+  fCh(0x0)
   {
   //copy ctor
     fCh = pl.fCh;
@@ -109,6 +132,19 @@ AliTOFCalPlateB::AliTOFCalPlateB(const AliTOFCalPlateB& pl):
   }
 //________________________________________________________________
 
+AliTOFCalPlateB& AliTOFCalPlateB::operator=(const AliTOFCalPlateB& pl)
+  {
+  //assignment operator
+    this->fCh = pl.fCh;
+    this->fNStripB = pl.fNStripB;
+    this->fNpadZ = pl.fNpadZ;
+    this->fNpadX = pl.fNpadX;
+    this->fGeom = pl.fGeom;
+    return *this;
+
+  }
+//________________________________________________________________
+
 void AliTOFCalPlateB::Browse(TBrowser *b){
   //add cal obj to list of browsables