]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliDetector.cxx
Coding convention correction and warning removal
[u/mrichter/AliRoot.git] / STEER / AliDetector.cxx
index 08355af3b8d9804cca9fa1e36a2caf3a8bd782f8..1af996719c0a75f5fd1d54e4cf66c346d008e153 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.5  1999/09/29 09:24:29  fca
+Introduction of the Copyright and cvs Log
+
 */
 
 ///////////////////////////////////////////////////////////////////////////////
@@ -116,6 +119,15 @@ void AliDetector::Browse(TBrowser *b)
   }
 }
 
+//_____________________________________________________________________________
+void AliDetector::Copy(AliDetector &det) const
+{
+  //
+  // Copy *this onto det -- not implemented
+  //
+  Fatal("Copy","Not implemented~\n");
+}
+
 //_____________________________________________________________________________
 void AliDetector::FinishRun()
 {
@@ -242,9 +254,9 @@ void AliDetector::MakeBranch(Option_t *option)
   sprintf(branchname,"%s",GetName());
   //
   // Get the pointer to the header
-  char *H = strstr(option,"H");
+  char *cH = strstr(option,"H");
   //
-  if (fHits   && gAlice->TreeH() && H) {
+  if (fHits   && gAlice->TreeH() && cH) {
     gAlice->TreeH()->Branch(branchname,&fHits, fBufferSize);
     printf("* AliDetector::MakeBranch * Making Branch %s for hits\n",branchname);
   }