]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Coding convention violations: fixed
authordecaro <decaro@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 25 Mar 2010 22:36:31 +0000 (22:36 +0000)
committerdecaro <decaro@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 25 Mar 2010 22:36:31 +0000 (22:36 +0000)
TOF/AliTOFChannelOnlineStatusArray.cxx
TOF/AliTOFDataDCS.cxx
TOF/AliTOFDataDCS.h
TOF/AliTOFFormatDCS.cxx
TOF/AliTOFFormatDCS.h

index c131b238db45e4358486988c806ee76cbd81e676..cf056f6fe62185e6e76da2ad0ac94c6f513aebd3 100644 (file)
@@ -123,6 +123,7 @@ void AliTOFChannelOnlineStatusArray::SetNoiseStatus(Int_t pos, UChar_t parr)
 //________________________________________________________________
 void AliTOFChannelOnlineStatusArray::SetLatencyWindow(Int_t pos, Int_t parr)
 {
+       // setting latency window for channel at position = pos
   if (!fLatencyWindow) {
     AliWarning("couldn't set latency window");
     return;
index 228b297bcc74f80bf4212fe03ae2ae134a61ff21..451cb139ee3ff370c0cb935573dd5197df09dc3e 100644 (file)
@@ -44,9 +44,13 @@ Class for handling the TOF DCS data in the Shuttle (C.Zampolli)
 
 */  
 
+// AliTOFDataDCS class
+// main aim to introduce the aliases for the TOF DCS
+// data points to be then
+// stored in the OCDB, and to process them. 
+// Process() method called by TOFPrepr
+
 #include "TString.h"
-//#include "TF1.h"
-//#include "TH1F.h"
 #include "TTimeStamp.h"
 #include "TMap.h"
 #include "TCanvas.h"
@@ -61,12 +65,6 @@ class TH2;
 class AliCDBMetaData;
 class TDatime;
 
-// AliTOFDataDCS class
-// main aim to introduce the aliases for the TOF DCS
-// data points to be then
-// stored in the OCDB, and to process them. 
-// Process() method called by TOFPrepr
-
 ClassImp(AliTOFDataDCS)
 
 //---------------------------------------------------------------
@@ -131,7 +129,7 @@ AliTOFDataDCS::AliTOFDataDCS(const AliTOFDataDCS & data):
 
 {
 
-// copy constructor
+  // copy constructor
 
   for(int i=0;i<kNAliases;i++) {
     fAliasNames[i]=data.fAliasNames[i];
@@ -150,7 +148,7 @@ AliTOFDataDCS::AliTOFDataDCS(const AliTOFDataDCS & data):
 
 AliTOFDataDCS& AliTOFDataDCS:: operator=(const AliTOFDataDCS & data) { 
 
-// assignment operator
+  // assignment operator
 
   if (this == &data)
     return *this;
@@ -464,7 +462,7 @@ void AliTOFDataDCS::Introduce(UInt_t numAlias, const TObjArray* aliasArr)const
 //---------------------------------------------------------------
 void AliTOFDataDCS::Draw(const Option_t* /*option*/)
 {
-// Draw all histos and graphs
+  // Draw all histos and graphs
 
   if(!fIsProcessed) return;
 
index 1c5d17477c16054259d089acb3c12cfb0d474066..d18fb8f8102398ce084a8473a687478b2cf5ebca 100644 (file)
@@ -1,26 +1,22 @@
-#ifndef AliTOFDataDCS_H
-#define AliTOFDataDCS_H
+#ifndef ALITOFDATADCS_H
+#define ALITOFDATADCS_H
 
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
 /* $Id$ */
 
+// AliTOFDataDCS class
+// main aim is to process DCS data
+// in order to obtain the data to be stored in the OCDB
+
 #include "TObject.h" 
-//#include "TString.h"
 
 class TMap;
 class TClonesArray;
-//class TH2F;
-//class TGraph;
-//class TF1;
 class TString;
 class AliTOFFormatDCS;
 
-// AliTOFDataDCS class
-// main aim is to process DCS data
-// in order to obtain the data to be stored in the OCDB
-
 class AliTOFDataDCS : public TObject {
 public:
   enum {kNAliases=360, kNHV=90};
index cd6b2355038ab040bd79183e656b828c9ccdcd32..7fbb518889004c9a6575ffa0b0579a2f1ee498b3 100644 (file)
 $Log$
 */  
 
-#include "AliTOFFormatDCS.h"
-
 // AliTOFFormatDCS class
 // contining the format of a DCS calibration objects
 // consisting in 10 floats
 // (5 data points + 5 corresponding timestamps) 
 // and a short_integer
 
+#include "AliTOFFormatDCS.h"
+
 ClassImp(AliTOFFormatDCS)
 
 //---------------------------------------------------------------
@@ -58,11 +58,11 @@ AliTOFFormatDCS::AliTOFFormatDCS(const AliTOFFormatDCS & format):
 //---------------------------------------------------------------
 
 AliTOFFormatDCS& AliTOFFormatDCS:: operator=(const AliTOFFormatDCS & format) { 
+  // assignment operator
 
   if (this == &format)
     return *this;
 
-  // assignment operator
   TObject::operator=(format);
   for (Int_t i=0;i<3;i++){
     fFloats[i]=format.GetFloat(i);
@@ -78,6 +78,7 @@ AliTOFFormatDCS& AliTOFFormatDCS:: operator=(const AliTOFFormatDCS & format) {
 //---------------------------------------------------------------
 
 AliTOFFormatDCS::~AliTOFFormatDCS(){
+  // dtr
 
 }
 
index 85365a9ff568cbf196eaffb9a20bcc30647efed7..125dfae1e062cea5d02186e04cb6a46f8afcafa8 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef AliTOFFormatDCS_H
-#define AliTOFFormatDCS_H
+#ifndef ALITOFFORMATDCS_H
+#define ALITOFFORMATDCS_H
 
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */