]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ACORDE/AliACORDEQADataMakerRec.cxx
Update of ACORDE-QA-Raw data histograms (now they go from -0.5 to 59.5)
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEQADataMakerRec.cxx
index acd8d9aed1c72b648d5392bc199064725f882047..cb0f0ae6bda708edf78d0b405e18064c834d61aa 100755 (executable)
-/**************************************************************************
- * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- *                                                                        *
- * Author: The ALICE Off-line Project.                                    *
- * Contributors are mentioned in the code where appropriate.              *
- *                                                                        *
- * Permission to use, copy, modify and distribute this software and its   *
- * documentation strictly for non-commercial purposes is hereby granted   *
- * without fee, provided that the above copyright notice appears in all   *
- * copies and that both the copyright notice and this permission notice   *
- * appear in the supporting documentation. The authors make no claims     *
- * about the suitability of this software for any purpose. It is          *
- * provided "as is" without express or implied warranty.                  *
- **************************************************************************/
-//---
-//  Produces the data needed to calculate the quality assurance. 
-//  All data must be mergeable objects.
-
-
-//  Authors:
-//
-//  Luciano Diaz Gonzalez <luciano.diaz@nucleares.unam.mx> (ICN-UNAM)
-//  Mario Rodriguez Cahuantzi <mrodrigu@mail.cern.ch> (FCFM-BUAP)
-//  Arturo Fernandez Tellez <afernan@mail.cern.ch (FCFM-BUAP)
-//
-//  Created: June 13th 2008
-//---
-// Last Update: Aug. 27th 2008 --> Implementation to declare QA expert histogram
-
-
-// --- ROOT system ---
-#include <TClonesArray.h>
-#include <TFile.h> 
-#include <TH1F.h> 
-#include <TDirectory.h>
-// --- Standard library ---
-
-// --- AliRoot header files ---
-#include "AliESDEvent.h"
-#include "AliLog.h"
-#include "AliACORDEdigit.h" 
-#include "AliACORDEhit.h"
-#include "AliACORDEQADataMakerRec.h"
-#include "AliQAChecker.h"
-#include "AliACORDERawReader.h"
-#include "AliACORDERawStream.h"
-ClassImp(AliACORDEQADataMakerRec)
-           
-//____________________________________________________________________________ 
-AliACORDEQADataMakerRec::AliACORDEQADataMakerRec():AliQADataMakerRec(AliQA::GetDetName(AliQA::kACORDE), "ACORDE Quality Assurance Data Maker")
-{
-
-}
-//____________________________________________________________________________ 
-AliACORDEQADataMakerRec::AliACORDEQADataMakerRec(const AliACORDEQADataMakerRec& qadm):AliQADataMakerRec() 
-{
-  SetName((const char*)qadm.GetName()) ; 
-  SetTitle((const char*)qadm.GetTitle()); 
-}
-//__________________________________________________________________
-AliACORDEQADataMakerRec& AliACORDEQADataMakerRec::operator = (const AliACORDEQADataMakerRec& qadm )
-{
-  // Equal operator.
-  this->~AliACORDEQADataMakerRec();
-  new(this) AliACORDEQADataMakerRec(qadm);
-  return *this;
-}
-//____________________________________________________________________________
-void AliACORDEQADataMakerRec::EndOfDetectorCycle(AliQA::TASKINDEX_t task, TObjArray ** list)
-{
-  //Detector specific actions at end of cycle
-  // do the QA checking
-  AliQAChecker::Instance()->Run(AliQA::kACORDE, task, list) ;
-}
-
-//____________________________________________________________________________
-void AliACORDEQADataMakerRec::StartOfDetectorCycle()
-{
-  //Detector specific actions at start of cycle
-
-}
-//____________________________________________________________________________ 
-void AliACORDEQADataMakerRec::InitRaws()
-{
-  // create Raw histograms in Raw subdir
-
-TH1D *fhACORDEBitPattern[4];
-fhACORDEBitPattern[0] = new TH1D("ACORDERawDataSM","ACORDE-SingleMuon",60,1,60);//AcordeSingleMuon BitPattern
-fhACORDEBitPattern[1] = new TH1D("ACORDERawDataMM","ACORDE-MultiMuon",60,1,60);//AcordeMultiMuon BitPattern
-fhACORDEBitPattern[2] = new TH1D("ACORDERawDataSMM","ACORDE-SingleMuonMultiplicity",60,1,60);//AcordeSingleMuon Multiplicity
-fhACORDEBitPattern[3] = new TH1D("ACORDERawDataMMM","ACORDE-MultiMuonMultiplicity",60,1,60);//AcordeMultiMuon Multiplicity
-for(Int_t i=0;i<4;i++)
-{
-       Add2RawsList(fhACORDEBitPattern[i],i,kFALSE);
-}
-}
-//____________________________________________________________________________ 
-
-void AliACORDEQADataMakerRec::InitRecPoints()
-{
-  // create cluster histograms in RecPoint subdir
-  // Not needed for ACORDE by now !!!
-}
-//____________________________________________________________________________
-void AliACORDEQADataMakerRec::InitESDs()
-{
-  //create ESDs histograms in ESDs subdir
-
-   TH1F *    fhESDsSingle;
-   TH1F *    fhESDsMulti;
-
-   TString   name;
-
-   name = "hESDsSingle";
-   fhESDsSingle = new TH1F(name.Data(),"hESDsSingle",60,0,60);
-   Add2ESDsList(fhESDsSingle,0,kFALSE);
-
-   name = "hESDsMulti";
-   fhESDsMulti = new TH1F(name.Data(),"hESDsMulti",60,0,60);
-   Add2ESDsList(fhESDsMulti,1,kFALSE);
-}
-//____________________________________________________________________________
-void AliACORDEQADataMakerRec::MakeRaws(AliRawReader* rawReader)
-{
-  //fills QA histos for RAW
-  rawReader->Reset();
-  AliACORDERawStream rawStream(rawReader);
-  size_t contSingle=0;
-  size_t contMulti=0;
-  UInt_t dy[4];
-
-  bool kroSingle[60],kroMulti[60];
-  UInt_t tmpDy;
-
-  for(Int_t m=0;m<60;m++) {kroSingle[m]=0;kroMulti[m]=0;}
-
-if(rawStream.Next())
-{
-        dy[0]=rawStream.GetWord(0);
-        dy[1]=rawStream.GetWord(1);
-        dy[2]=rawStream.GetWord(2);
-        dy[3]=rawStream.GetWord(3);
-        tmpDy=dy[0];
-        for(Int_t r=0;r<30;++r)
-        {
-                kroSingle[r] = tmpDy & 1;
-                tmpDy>>=1;
-        }
-        tmpDy=dy[1];
-        for(Int_t r=30;r<60;++r)
-        {
-                kroSingle[r] = tmpDy & 1;
-                tmpDy>>=1;
-        }
-        tmpDy=dy[2];
-        for(Int_t r=0;r<30;++r)
-        {
-                kroMulti[r] = tmpDy & 1;
-                tmpDy>>=1;
-        }
-        tmpDy=dy[3];
-        for(Int_t r=30;r<60;++r)
-        {
-                kroMulti[r] = tmpDy & 1;
-                tmpDy>>=1;
-        }
-        contSingle=0;
-       contMulti=0;
-        for(Int_t r=0;r<60;++r)
-        {
-                if(kroSingle[r]==1)
-                {
-                        GetRawsData(0)->Fill(r+1);
-                        contSingle=contSingle+1;
-                }
-               if(kroMulti[r]==1)
-               {
-                       GetRawsData(1)->Fill(r+1);
-                       contMulti++;
-               }
-
-        }GetRawsData(2)->Fill(contSingle);GetRawsData(3)->Fill(contMulti);
-}
-}
-//____________________________________________________________________________
-void AliACORDEQADataMakerRec::MakeESDs(AliESDEvent * esd)
-{
-  //fills QA histos for ESD
-
-        AliESDACORDE * fESDACORDE= esd->GetACORDEData();
-        Int_t *fACORDEMultiMuon =fESDACORDE->GetACORDEMultiMuon();
-        Int_t *fACORDESingleMuon=fESDACORDE->GetACORDESingleMuon();
-
-       for(int i=0;i<60;i++){
-            if(fACORDESingleMuon[i]==1)
-               GetESDsData(0) -> Fill(i);
-            if(fACORDEMultiMuon[i]==1)
-               GetESDsData(1) -> Fill(i);
-        }
-
-
-
-
-}
-
+/**************************************************************************\r
+ * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *\r
+ *                                                                        *\r
+ * Author: The ALICE Off-line Project.                                    *\r
+ * Contributors are mentioned in the code where appropriate.              *\r
+ *                                                                        *\r
+ * Permission to use, copy, modify and distribute this software and its   *\r
+ * documentation strictly for non-commercial purposes is hereby granted   *\r
+ * without fee, provided that the above copyright notice appears in all   *\r
+ * copies and that both the copyright notice and this permission notice   *\r
+ * appear in the supporting documentation. The authors make no claims     *\r
+ * about the suitability of this software for any purpose. It is          *\r
+ * provided "as is" without express or implied warranty.                  *\r
+ **************************************************************************/\r
+//---\r
+//  Produces the data needed to calculate the quality assurance. \r
+//  All data must be mergeable objects.\r
+\r
+\r
+//  Authors:\r
+//\r
+//  Luciano Diaz Gonzalez <luciano.diaz@nucleares.unam.mx> (ICN-UNAM)\r
+//  Mario Rodriguez Cahuantzi <mrodrigu@mail.cern.ch> (FCFM-BUAP)\r
+//  Arturo Fernandez Tellez <afernan@mail.cern.ch (FCFM-BUAP)\r
+//\r
+//  Created: June 13th 2008\r
+//---\r
+// Last Update: Aug. 27th 2008 --> Implementation to declare QA expert histogram\r
+//  Last update: Nov. 14t 2009 --> MRC <mrodrigu@mail.cern.ch> (FCFM-BUAP) \r
+//                     |--> Change in Multiplicity histogram for AMORE (to detect empty triggers events of ACORDE)\r
+\r
+\r
+\r
+// --- ROOT system ---\r
+#include <TClonesArray.h>\r
+#include <TFile.h> \r
+#include <TH1F.h> \r
+#include <TDirectory.h>\r
+// --- Standard library ---\r
+\r
+// --- AliRoot header files ---\r
+#include "AliESDEvent.h"\r
+#include "AliLog.h"\r
+#include "AliACORDEdigit.h" \r
+#include "AliACORDEhit.h"\r
+#include "AliACORDEQADataMakerRec.h"\r
+#include "AliQAChecker.h"\r
+#include "AliACORDERawReader.h"\r
+#include "AliACORDERawStream.h"\r
+ClassImp(AliACORDEQADataMakerRec)\r
+           \r
+//____________________________________________________________________________ \r
+AliACORDEQADataMakerRec::AliACORDEQADataMakerRec():AliQADataMakerRec(AliQAv1::GetDetName(AliQAv1::kACORDE), "ACORDE Quality Assurance Data Maker")\r
+{\r
+\r
+}\r
+//____________________________________________________________________________ \r
+AliACORDEQADataMakerRec::AliACORDEQADataMakerRec(const AliACORDEQADataMakerRec& qadm):AliQADataMakerRec() \r
+{\r
+  SetName((const char*)qadm.GetName()) ; \r
+  SetTitle((const char*)qadm.GetTitle()); \r
+}\r
+//__________________________________________________________________\r
+AliACORDEQADataMakerRec& AliACORDEQADataMakerRec::operator = (const AliACORDEQADataMakerRec& qadm )\r
+{\r
+  // Equal operator.\r
+  this->~AliACORDEQADataMakerRec();\r
+  new(this) AliACORDEQADataMakerRec(qadm);\r
+  return *this;\r
+}\r
+//____________________________________________________________________________\r
+void AliACORDEQADataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list)\r
+{\r
+  //Detector specific actions at end of cycle\r
+  // do the QA checking\r
+  AliQAChecker::Instance()->Run(AliQAv1::kACORDE, task, list) ;\r
+}\r
+\r
+//____________________________________________________________________________\r
+void AliACORDEQADataMakerRec::StartOfDetectorCycle()\r
+{\r
+  //Detector specific actions at start of cycle\r
+\r
+}\r
\r
+//____________________________________________________________________________ \r
+void AliACORDEQADataMakerRec::InitRaws()\r
+{\r
+  // create Raw histograms in Raw subdir\r
+\r
+  const Bool_t expert   = kTRUE ; \r
+  const Bool_t saveCorr = kTRUE ; \r
+  const Bool_t image    = kTRUE ; \r
+  char *acoModule[60]={"0_0","0_1","0_2","0_3","0_4","0_5","0_6","0_7","0_8","0_9",\r
+                        "1_0","1_1","1_2","1_3","1_4","1_5","1_6","1_7","1_8","1_9",\r
+                        "2_0","2_1","2_2","2_3","2_4","2_5","2_6","2_7","2_8","2_9",\r
+                        "3_0","3_1","3_2","3_3","3_4","3_5","3_6","3_7","3_8","3_9",\r
+                        "4_0","4_1","4_2","4_3","4_4","4_5","4_6","4_7","4_8","4_9",\r
+                        "5_0","5_1","5_2","5_3","5_4","5_5","5_6","5_7","5_8","5_9"};\r
+\r
+\r
+  TH1F *fhACORDEBitPattern[4];\r
+  fhACORDEBitPattern[0] = new TH1F("ACORDEBitPatternfromRAWSingle","Distribution of ACORDE fired modules from RAW-Single;Modules;Counts",60,-0.5,59.5);//AcordeSingleMuon BitPattern\r
+  fhACORDEBitPattern[1] = new TH1F("ACORDEBitPatternfromRAWMulti","Distribution of ACORDE fired modules from RAW-Multi;Modules;Counts",60,-0.5,59.5);//AcordeMultiMuon BitPattern\r
+  fhACORDEBitPattern[2] = new TH1F("ACORDEMultiplicityfromRAWSingle","Number of fired ACORDE modules;No. of fired ACORDE modules;No. of events in ACORDE",60,-0.5,60);//AcordeSingleMuon Multiplicity\r
+  fhACORDEBitPattern[3] = new TH1F("ACORDEMultiplicityfromRAWMulti","Number of fired ACORDE modules; No. of fired ACORDE modules;No. of events in ACORDE",60,-0.5,60);//AcordeMultiMuon Multiplicity\r
+  for(Int_t i=0;i<4;i++) \r
+    Add2RawsList(fhACORDEBitPattern[i],i,!expert, image, !saveCorr);\r
+  \r
+  for (Int_t iModule = 0; iModule<60; iModule++)\r
+  {\r
+       fhACORDEBitPattern[0]->GetXaxis()->SetBinLabel(iModule+1,acoModule[iModule]);\r
+       fhACORDEBitPattern[1]->GetXaxis()->SetBinLabel(iModule+1,acoModule[iModule]);\r
+  }\r
+\r
+}\r
+//____________________________________________________________________________ \r
+void AliACORDEQADataMakerRec::InitDigits()\r
+{\r
+  // create Digits histograms in Digits subdir\r
+  \r
+  const Bool_t expert   = kTRUE ; \r
+  const Bool_t image    = kTRUE ; \r
+  TH1F *    fhDigitsModule;\r
+   char *acoModule[60]={"0_0","0_1","0_2","0_3","0_4","0_5","0_6","0_7","0_8","0_9",\r
+                        "1_0","1_1","1_2","1_3","1_4","1_5","1_6","1_7","1_8","1_9",\r
+                        "2_0","2_1","2_2","2_3","2_4","2_5","2_6","2_7","2_8","2_9",\r
+                        "3_0","3_1","3_2","3_3","3_4","3_5","3_6","3_7","3_8","3_9",\r
+                        "4_0","4_1","4_2","4_3","4_4","4_5","4_6","4_7","4_8","4_9",\r
+                        "5_0","5_1","5_2","5_3","5_4","5_5","5_6","5_7","5_8","5_9"};\r
+\r
+\r
+  fhDigitsModule = new TH1F("ACORDEBitPatternfromDigits","Distribution of ACORDE from DIGITS;Modules;Counts",60,1,60);\r
+  Add2DigitsList(fhDigitsModule,0,!expert,image);\r
+  for (Int_t i=0;i<60;i++) fhDigitsModule->GetXaxis()->SetBinLabel(i+1,acoModule[i]); \r
+}\r
+\r
+//____________________________________________________________________________ \r
+\r
+void AliACORDEQADataMakerRec::InitRecPoints()\r
+{\r
+  // create cluster histograms in RecPoint subdir\r
+  // Not needed for ACORDE by now !!!\r
+}\r
+\r
+//____________________________________________________________________________\r
+void AliACORDEQADataMakerRec::InitESDs()\r
+{\r
+  //create ESDs histograms in ESDs subdir\r
+\r
+  const Bool_t expert   = kTRUE ; \r
+  const Bool_t image    = kTRUE ; \r
+  \r
+  TH1F *    fhESDsSingle;\r
+  TH1F *    fhESDsMulti;\r
+  TH1F *       fhESDsMultiplicity;\r
+   char *acoModule[60]={"0_0","0_1","0_2","0_3","0_4","0_5","0_6","0_7","0_8","0_9",\r
+                        "1_0","1_1","1_2","1_3","1_4","1_5","1_6","1_7","1_8","1_9",\r
+                        "2_0","2_1","2_2","2_3","2_4","2_5","2_6","2_7","2_8","2_9",\r
+                        "3_0","3_1","3_2","3_3","3_4","3_5","3_6","3_7","3_8","3_9",\r
+                        "4_0","4_1","4_2","4_3","4_4","4_5","4_6","4_7","4_8","4_9",\r
+                        "5_0","5_1","5_2","5_3","5_4","5_5","5_6","5_7","5_8","5_9"};\r
+\r
+\r
+   fhESDsSingle = new TH1F("ACORDEBitPatternfromESDsSingle","Distribution of ACORDE fired modules from ESDs-Single;Modules;Counts",60,1,60);\r
+   Add2ESDsList(fhESDsSingle,0,!expert,image);\r
+\r
+   fhESDsMulti = new TH1F("ACORDEBitPatternfromESDsMulti","Distribution of ACORDE fired modules from ESDs-Multi;Modules;Counts",60,1,60);\r
+   Add2ESDsList(fhESDsMulti,1,!expert,image);\r
+   \r
+   fhESDsMultiplicity = new TH1F("ACORDEMultiplicityfromESD","Number of fired ACORDE modules; No. of fired ACORDE modules;No. of events in ACORDE",60,-0.5,60);\r
+   Add2ESDsList(fhESDsMultiplicity,2,!expert,image);   \r
+   for (Int_t i=0;i<60;i++)\r
+   {\r
+       fhESDsSingle->GetXaxis()->SetBinLabel(i+1,acoModule[i]);\r
+       fhESDsMulti->GetXaxis()->SetBinLabel(i+1,acoModule[i]);\r
+   }\r
+\r
+\r
+}\r
+//____________________________________________________________________________\r
+void AliACORDEQADataMakerRec::MakeRaws(AliRawReader* rawReader)\r
+{\r
+  //fills QA histos for RAW\r
+\r
+  rawReader->Reset();\r
+  AliACORDERawStream rawStream(rawReader);\r
+  size_t contSingle=0;\r
+  size_t contMulti=0;\r
+  UInt_t dy[4];\r
+\r
+  bool kroSingle[60],kroMulti[60];\r
+  UInt_t tmpDy;\r
+\r
+  for(Int_t m=0;m<60;m++) {kroSingle[m]=0;kroMulti[m]=0;}\r
+\r
+if(rawStream.Next())\r
+{\r
+        dy[0]=rawStream.GetWord(0);\r
+        dy[1]=rawStream.GetWord(1);\r
+        dy[2]=rawStream.GetWord(2);\r
+        dy[3]=rawStream.GetWord(3);\r
+        tmpDy=dy[0];\r
+        for(Int_t r=0;r<30;r++)\r
+        {\r
+                kroSingle[r] = tmpDy & 1;\r
+                tmpDy>>=1;\r
+        }\r
+        tmpDy=dy[1];\r
+        for(Int_t r=30;r<60;r++)\r
+        {\r
+                kroSingle[r] = tmpDy & 1;\r
+                tmpDy>>=1;\r
+        }\r
+        tmpDy=dy[2];\r
+        for(Int_t r=0;r<30;r++)\r
+        {\r
+                kroMulti[r] = tmpDy & 1;\r
+                tmpDy>>=1;\r
+        }\r
+        tmpDy=dy[3];\r
+        for(Int_t r=30;r<60;r++)\r
+        {\r
+                kroMulti[r] = tmpDy & 1;\r
+                tmpDy>>=1;\r
+        }\r
+        contSingle=0;\r
+       contMulti=0;\r
+        for(Int_t r=0;r<60;r++)\r
+        {\r
+                       if(kroSingle[r]==1)\r
+                       {\r
+                               GetRawsData(0)->Fill(r+1);\r
+                               contSingle=contSingle+1;\r
+                       }\r
+                       if(kroMulti[r]==1)\r
+                       {\r
+                               GetRawsData(1)->Fill(r+1);\r
+                               contMulti++;\r
+                       }\r
+\r
+        }GetRawsData(2)->Fill(contSingle);GetRawsData(3)->Fill(contMulti);\r
+}\r
+}\r
+//____________________________________________________________________________\r
+void AliACORDEQADataMakerRec::MakeDigits( TTree *digitsTree)\r
+{\r
+  //fills QA histos for Digits\r
+  if (fDigitsArray) \r
+    fDigitsArray->Clear() ; \r
+  else \r
+    fDigitsArray = new TClonesArray("AliACORDEdigit",1000);\r
+  TBranch * branch = digitsTree->GetBranch("ACORDEdigit");\r
+  if (!branch) {\r
+    AliWarning("ACORDE branch in Digits Tree not found");\r
+  } else {\r
+    branch->SetAddress(&fDigitsArray);\r
+    for(Int_t track = 0 ; track < branch->GetEntries() ; track++) {\r
+      branch->GetEntry(track);\r
+      for(Int_t idigit = 0 ; idigit < fDigitsArray->GetEntriesFast() ; idigit++) {\r
+        AliACORDEdigit *AcoDigit = (AliACORDEdigit*) fDigitsArray->UncheckedAt(idigit);\r
+        if (!AcoDigit) {\r
+          AliError("The unchecked digit doesn't exist");\r
+          continue ;\r
+        }\r
+        GetDigitsData(0)->Fill(AcoDigit->GetModule()-1);\r
+      }\r
+    }\r
+  }\r
+}\r
+\r
+//____________________________________________________________________________\r
+void AliACORDEQADataMakerRec::MakeESDs(AliESDEvent * esd)\r
+{\r
+  //fills QA histos for ESD\r
+\r
+  AliESDACORDE * fESDACORDE= esd->GetACORDEData();\r
+  Int_t acoMulti=0;\r
+  for(int i=0;i<60;i++)\r
+  {\r
+       if(fESDACORDE->GetHitChannel(i)) \r
+       {\r
+               GetESDsData(0)->Fill(i+1);\r
+               GetESDsData(1)->Fill(i+1);\r
+               acoMulti++;\r
+       }\r
+  }GetESDsData(2)->Fill(acoMulti);\r
+\r
+}\r