]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Clean up coding convention violations
authoralla <alla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 22 Oct 2003 12:16:21 +0000 (12:16 +0000)
committeralla <alla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 22 Oct 2003 12:16:21 +0000 (12:16 +0000)
FMD/AliFMD.cxx
FMD/AliFMDDigitizer.cxx
FMD/AliFMDDigitizer.h
FMD/AliFMDReconstParticles.cxx

index 66d9db215be0366a6d679664b2a4d1b2a2474875..3218fee01f713b1aedf70cefb3ecef60d2ef7500 100644 (file)
@@ -20,8 +20,8 @@
 //  Forward Multiplicity Detector based on Silicon plates                    //
 //  This class contains the base procedures for the Forward Multiplicity     //
 //  detector                                                                 //
-//  Detector consists of 6 Si volumes covered pseudorapidity interval         //
-//  from 1.6 to 6.0.                                                         //
+//  Detector consists of 5 Si volumes covered pseudorapidity interval         //
+//  from 1.7 to 5.1.                                                         //
 //                                                                           //
 //Begin_Html
 /*
index 432b3e56572029b37be7873f36cfa25685b6e6ce..a61646316b1f20baef5af1d78f72791d8170a197 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
+ //////////////////////////////////////////////////////////////////////////////
+//                                                                           //
+//  Forward Multiplicity Detector based on Silicon plates                    //
+//  This class contains the procedures simulation ADC  signal for            //
+//  the Forward Multiplicity detector  : hits -> digits                      //
+//  ADC signal consists                                                      //
+//   - number of detector;                                                   //
+//   - number of ring;                                                       //
+//   - number of sector;                                                     //
+//   - ADC signal in this channel                                            //
+//                                                                           //
+ //////////////////////////////////////////////////////////////////////////////
 
 #include <TTree.h> 
 #include <TVector.h>
@@ -50,12 +62,11 @@ ClassImp(AliFMDDigitizer)
 AliFMDDigitizer::AliFMDDigitizer(AliRunDigitizer* manager) 
     :AliDigitizer(manager) 
 {
-     cout<<"AliFMDDigitizer::AliFMDDigitizer"<<endl;
-// ctor which should be used
-//  fDebug =0;
- // if (GetDebug()>2)
+  // ctor which should be used
+  //  fDebug =0;
+  // if (GetDebug()>2)
   //  cerr<<"AliFMDDigitizer::AliFMDDigitizer"
-   //     <<"(AliRunDigitizer* manager) was processed"<<endl;
+  //     <<"(AliRunDigitizer* manager) was processed"<<endl;
 }
 
 //------------------------------------------------------------------------
@@ -75,7 +86,7 @@ Bool_t AliFMDDigitizer::Init()
 
 //---------------------------------------------------------------------
 
-void AliFMDDigitizer::Exec(Option_t * option)
+void AliFMDDigitizer::Exec(Option_t * /*option*/)
 {
 
   /*
@@ -85,14 +96,12 @@ void AliFMDDigitizer::Exec(Option_t * option)
    - number of sector;
    - ADC signal in this channel
   */
-  cout<<"AliFMDDigitizer::Exec Nachali Exec>> "<<endl;
 
   AliRunLoader *inRL, *outRL;//in and out Run Loaders
   AliLoader *ingime, *outgime;// in and out ITSLoaders
 
   outRL = AliRunLoader::GetRunLoader(fManager->GetOutputFolderName());
   outgime = outRL->GetLoader("FMDLoader");
-  cout<<"AliFMDDigitizer::Exec >> "<<outgime<<endl;
 
 #ifdef DEBUG
   cout<<"AliFMDDigitizer::>SDigits2Digits start...\n";
@@ -109,13 +118,13 @@ void AliFMDDigitizer::Exec(Option_t * option)
     for(Int_t j=0; j<50; j++)
       for(Int_t ij=0; ij<520; ij++)
      de[i][j][ij]=0;
-  Int_t NumberOfRings[5]=
+  Int_t numberOfRings[5]=
   {512,256,512,256,512};
-  Int_t NumberOfSectors[5]=
+  Int_t numberOfSector[5]=
   {20,40,20,40,20}; 
   
   AliFMDhit *fmdHit=0;
-  TTree *TH=0;
+  TTree *tH=0;
   TBranch *brHits=0;
   TBranch *brD=0;
 
@@ -150,31 +159,31 @@ void AliFMDDigitizer::Exec(Option_t * option)
       ingime->LoadHits("READ");//probably it is necessary to load them before
       
       
-      TH = ingime->TreeH();
-      if (TH == 0x0)
+      tH = ingime->TreeH();
+      if (tH == 0x0)
        {
          ingime->LoadHits("read");
-         TH = ingime->TreeH();
+         tH = ingime->TreeH();
        }
-      brHits = TH->GetBranch("FMD");
+      brHits = tH->GetBranch("FMD");
       if (brHits) {
   //      brHits->SetAddress(&fHits);
           fFMD->SetHitsAddressBranch(brHits);
       }else{
         Fatal("Exec","EXEC Branch FMD hit not found");
       }
-      TClonesArray *FMDhits = fFMD->Hits ();
+      TClonesArray *fFMDhits = fFMD->Hits ();
       
-      Int_t ntracks    = (Int_t) TH->GetEntries();
+      Int_t ntracks    = (Int_t) tH->GetEntries();
       cout<<"Number of tracks TreeH"<<ntracks<<endl;
       for (Int_t track = 0; track < ntracks; track++)
        {
          brHits->GetEntry(track);
-         Int_t nhits = FMDhits->GetEntries ();
+         Int_t nhits = fFMDhits->GetEntries ();
          // if(nhits>0) cout<<"nhits "<<nhits<<endl;
          for (hit = 0; hit < nhits; hit++)
            {
-             fmdHit = (AliFMDhit *) FMDhits->UncheckedAt(hit);
+             fmdHit = (AliFMDhit *) fFMDhits->UncheckedAt(hit);
 
              volume = fmdHit->Volume ();
              sector = fmdHit->NumberOfSector ();
@@ -190,14 +199,14 @@ void AliFMDDigitizer::Exec(Option_t * option)
 
  
   // Put noise and make ADC signal
-   Float_t I = 1.664 * 0.04 * 2.33 / 22400;     // = 6.923e-6;
+   Float_t mipI = 1.664 * 0.04 * 2.33 / 22400;     // = 6.923e-6;
    for ( ivol=1; ivol<=5; ivol++){
-     for ( iSector=1; iSector<=NumberOfSectors[ivol-1]; iSector++){
-       for ( iRing=1; iRing<=NumberOfRings[ivol-1]; iRing++){
+     for ( iSector=1; iSector<=numberOfSector[ivol-1]; iSector++){
+       for ( iRing=1; iRing<=numberOfRings[ivol-1]; iRing++){
          digit[0]=ivol;
          digit[1]=iSector;
          digit[2]=iRing;
-         charge = Int_t (de[ivol][iSector][iRing] / I);
+         charge = Int_t (de[ivol][iSector][iRing] / mipI);
          Int_t pedestal=Int_t(gRandom->Gaus(500,250));
   //       digit[3]=PutNoise(charge);
          digit[3]=charge + pedestal;
index 80349205bca74ebfff39ccb66f01908103cdb078..6db14c3d2a30dec235e9d7952b2a15efe7417523 100644 (file)
@@ -18,7 +18,7 @@ class AliFMDDigitizer : public AliDigitizer {
   
   // Do the main work
   void Exec(Option_t* option=0) ;
-  Int_t PutNoise(Int_t charge){return (Int_t)(gRandom->Gaus(charge,500));}
+  Int_t PutNoise(Int_t charge) {return (Int_t)(gRandom->Gaus(charge,500));}
   TClonesArray *Digits() const {return fDigits;}
   TClonesArray *Hits() const {return fHits;}
  
index 216d2a977659406ade9f4b6d98d21349fa91a72e..8b3c37feecd82756a2b5ef0bef4214a853b4eb8c 100644 (file)
@@ -1,3 +1,14 @@
+
+ //////////////////////////////////////////////////////////////////////////////
+//                                                                           //
+//  Forward Multiplicity Detector have to be reconstructed                   //
+//  number of particles in fixed pseudorapidity interval from                //
+// fNumOfMinRing  to fNumOfMaxRing                                           //
+// and phi interval                                                          //
+//  from fNumOfMinSector to fNumOfMaxSector                                  //
+ //////////////////////////////////////////////////////////////////////////////
+
 #include "AliFMDReconstParticles.h"
 
 ClassImp(AliFMDReconstParticles)