]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSDigitizer.cxx
For Pythia with tune don't switch off MI in ConfigHeavyFlavor
[u/mrichter/AliRoot.git] / ITS / AliITSDigitizer.cxx
index 1733fd43dca8313dfa4842989fd5c1e9d304f044..6eb20778061e38021d1fde04eceaeb07cdb398ef 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
  
-/*
-$Log$
-Revision 1.2  2002/03/15 17:26:40  nilsen
-New SDigit version of ITS Digitizer.
-
-Revision 1.1  2001/11/27 16:27:28  nilsen
-Adding AliITSDigitizer class to do merging and digitization . Based on the
-TTask method. AliITSDigitizer class added to the Makefile and ITSLinkDef.h
-file. The following files required minor changes. AliITS, added functions
-SetHitsAddressBranch, MakeBranchInTreeD and modified MakeBranchD.
-AliITSsimulationSDD.cxx needed a Tree independent way of returning back to
-the original Root Directory in function Compress1D. Now it uses gDirectory.
-
-Revision 1.2  2002/03/01  E. Lopez
-Digitization changed to start from SDigits instead of Hits.
-The SDigits are reading as TClonesArray of AliITSpListItem
-*/
+/* $Id$ */
+///////////////////////////////////////////////////////////////////////////
+//Piotr.Skowronski@cern.ch :                                             //
+//Corrections applied in order to compile (only)                         // 
+//   with new I/O and folder structure                                   //
+//To be implemented correctly by responsible                             //
+//                                                                       //
+//  Class used to steer                                                  //
+//  the digitization for ITS                                             //
+//                                                                       //
+///////////////////////////////////////////////////////////////////////////
 
 #include <stdlib.h>
-#include <iostream.h>
-#include <TObjArray.h>
+#include <TClonesArray.h>
 #include <TTree.h>
 #include <TBranch.h>
-#include <TFile.h>
-
-#include <AliRun.h>
-#include <AliRunDigitizer.h>
 
+#include "AliRun.h"
+#include "AliRunLoader.h"
+#include "AliLoader.h"
+#include "AliLog.h"
+#include "AliRunDigitizer.h"
 #include "AliITSDigitizer.h"
-#include "AliITShit.h"
-#include "AliITSmodule.h"
-#include "AliITSsimulation.h"
-#include "AliITSDetType.h"
 #include "AliITSgeom.h"
+#include "AliITSsimulation.h"
 
 ClassImp(AliITSDigitizer)
 
 //______________________________________________________________________
-AliITSDigitizer::AliITSDigitizer() : AliDigitizer(){
+AliITSDigitizer::AliITSDigitizer() : AliDigitizer(),
+fITS(0),
+fModActive(0),
+fInit(kFALSE),
+fRoif(-1),
+fRoiifile(0),
+fFlagFirstEv(kTRUE){
     // Default constructor. Assign fITS since it is never written out from
     // here. 
     // Inputs:
@@ -61,13 +58,15 @@ AliITSDigitizer::AliITSDigitizer() : AliDigitizer(){
     // Return:
     //      A blank AliITSDigitizer class.
 
-    fITS    = 0;
-    fActive = 0;
-    fRoif   = -1;
-    fRoiifile = 0;
 }
 //______________________________________________________________________
-AliITSDigitizer::AliITSDigitizer(AliRunDigitizer *mngr) : AliDigitizer(mngr){
+AliITSDigitizer::AliITSDigitizer(AliRunDigitizer *mngr) : AliDigitizer(mngr),
+fITS(0),
+fModActive(0),
+fInit(kFALSE),
+fRoif(-1),
+fRoiifile(0),
+fFlagFirstEv(kTRUE){
     // Standard constructor. Assign fITS since it is never written out from
     // here. 
     // Inputs:
@@ -77,32 +76,9 @@ AliITSDigitizer::AliITSDigitizer(AliRunDigitizer *mngr) : AliDigitizer(mngr){
     // Return:
     //      An AliItSDigitizer class.
 
-    if(!gAlice) {
-       fITS = 0;
-       fActive = 0;
-       fRoif   = -1;
-       fRoiifile = 0;
-       return;
-    } // end if
-    fITS = (AliITS *)(gAlice->GetDetector("ITS"));
-    if(!fITS){
-       fActive = 0;
-       fRoif   = -1;
-       fRoiifile = 0;
-       return;
-    } else if(fITS->GetITSgeom()){
-       fActive = new Bool_t[fITS->GetITSgeom()->GetIndexMax()];
-       fRoif   = -1;
-       fRoiifile = 0;
-    } else{
-       fActive = 0;
-       fRoif   = -1;
-       fRoiifile = 0;
-       return;
-    } // end if
-    // fActive needs to be set to a default all kTRUE value
-    for(Int_t i=0;i<fITS->GetITSgeom()->GetIndexMax();i++) fActive[i] = kTRUE;
 }
+
+
 //______________________________________________________________________
 AliITSDigitizer::~AliITSDigitizer(){
     // Default destructor. 
@@ -112,85 +88,46 @@ AliITSDigitizer::~AliITSDigitizer(){
     //      none.
     // Return:
     //      none.
-
     fITS = 0; // don't delete fITS. Done else where.
-    if(fActive) delete[] fActive;
-}
-//______________________________________________________________________
-Bool_t AliITSDigitizer::Init(const char *filename){
-    // Initialization 
-    // Inputs:
-    //      none.
-    // Outputs:
-    //      none.
-    // Return:
-    //      none.
-     
-//    TFile *file = (TFile*)gROOT->GetListOfFiles()->FindObject(filename);
-//    if (file) {file->Close(); delete file;}
-    TFile *file = new TFile(filename);
-    if (!file->IsOpen()) {
-        Error("Init","Can't open %s!",filename);
-        return kFALSE;
-    } // end if !file 
-    if (gAlice) delete gAlice;
-    gAlice = (AliRun*)file->Get("gAlice");
-    if (!gAlice) {
-        Error("Init","AliRun object not found on file");
-        return kFALSE;
-    } // end if !gAlice
-
-    this->Init();
-    delete gAlice;
-    gAlice=0;
-    return kTRUE;
+    if(fModActive) delete[] fModActive;
 }
 //______________________________________________________________________
 Bool_t AliITSDigitizer::Init(){
-    // Initialization 
+    // Initialization. Set up region of interest, if switched on, and
+    // loads ITS and ITSgeom.
     // Inputs:
     //      none.
     // Outputs:
     //      none.
     // Return:
-
     //      none.
-//    TTree *ts;
 
+    fInit = kTRUE; // Assume for now init will work.
     if(!gAlice) {
        fITS      = 0;
-       fActive   = 0;
-       fRoif     = -1;
        fRoiifile = 0;
-//     cout << "init !gAlice"<<endl;
-       return kFALSE;
+       fInit     = kFALSE;
+       Warning("Init","gAlice not found");
+       return fInit;
     } // end if
     fITS = (AliITS *)(gAlice->GetDetector("ITS"));
     if(!fITS){
-       fActive   = 0;
-       fRoif     = -1;
        fRoiifile = 0;
-//     cout << "init !fITS"<<endl;
-       return kFALSE;
+       fInit     = kFALSE;
+       Warning("Init","ITS not found");
+       return fInit;
     } else if(fITS->GetITSgeom()){
-       fActive = new Bool_t[fITS->GetITSgeom()->GetIndexMax()];
+       //cout << "fRoif,fRoiifile="<<fRoif<<" "<<fRoiifile<<endl;
+       fModActive = new Bool_t[fITS->GetITSgeom()->GetIndexMax()];
     } else{
-       fActive = 0;
-       fRoif   = -1;
        fRoiifile = 0;
-//     cout << "init !fITS-GetITSgeom()"<<endl;
-       return kFALSE;
-    } // end if
-    // fActive needs to be set to a default all kTRUE value
-    for(Int_t i=0;i<fITS->GetITSgeom()->GetIndexMax();i++) fActive[i] = kTRUE;
-/*
-    if(fRoif>=0 && fRoiifile>=0 && fRoiifile<GetManager()->GetNinputs()){
-       ts = GetManager()->GetInputTreeS(fRoiifile);
-       cout << "calling SetByReionOfInterest"<<endl;
-       SetByRegionOfInterest(ts);
+       fInit     = kFALSE;
+       Warning("Init","ITS geometry not found");
+       return fInit;
     } // end if
-*/
-    return kTRUE;
+    // fModActive needs to be set to a default all kTRUE value
+    for(Int_t i=0;i<fITS->GetITSgeom()->GetIndexMax();i++) fModActive[i] = kTRUE;
+    return fInit;
 }
 //______________________________________________________________________
 void AliITSDigitizer::Exec(Option_t* opt){
@@ -203,87 +140,150 @@ void AliITSDigitizer::Exec(Option_t* opt){
     //      none.
 
     char name[20] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
-    char *all;
+    const char *all;
     const char *det[3] = {strstr(opt,"SPD"),strstr(opt,"SDD"),
                           strstr(opt,"SSD")};
     if( !det[0] && !det[1] && !det[2] ) all = "All";
     else all = 0;
+    Int_t nfiles = GetManager()->GetNinputs();
+    Int_t event  = GetManager()->GetOutputEventNr();
     AliITSsimulation *sim      = 0;
-    AliITSDetType    *iDetType = 0;
-    static Bool_t    setDef    = kTRUE;
-
-    if(!fITS) fITS = (AliITS*)(gAlice->GetDetector("ITS"));
-    if(!fITS){
-       Error("Exec","The ITS not found. aborting.");
+    if(fFlagFirstEv){
+      fITS->SetDefaults();    
+      fITS->SetDefaultSimulation();
+      fFlagFirstEv=kFALSE;
+    }
+    if(!fInit){
+       Error("Exec","Init not successful, aborting.");
        return;
     } // end if
-    if( !(fITS->GetITSgeom()) ) {
-        Warning( "Exec", "Need ITS geometry to be properly defined first." );
-        return; // need transformations to do digitization.
-    } // end if !GetITSgeom()
 
-    if( setDef ) fITS->SetDefaultSimulation();
-    setDef = kFALSE;
-    sprintf( name, "%s", fITS->GetName() );
+    sprintf(name,"%s",fITS->GetName());
 
-    Int_t nfiles = GetManager()->GetNinputs();
-    Int_t event  = GetManager()->GetOutputEventNr();
     Int_t size   = fITS->GetITSgeom()->GetIndexMax();
+    Int_t module,id,ifiles,mask;
+    Bool_t lmod;
+    Int_t *fl = new Int_t[nfiles];
+    fl[0] = fRoiifile;
+    mask = 1;
+    for(id=0;id<nfiles;id++) 
+     if(id!=fRoiifile)
+      {
+       // just in case fRoiifile!=0.
+        fl[mask] = id;
+        mask++;
+      } // end for,if
     TClonesArray * sdig = new TClonesArray( "AliITSpListItem",1000 );
     
-    // Digitize 
-    fITS->MakeBranchInTreeD( GetManager()->GetTreeD() );
-    if(fRoif!=-1)SetByRegionOfInterest(GetManager()->GetInputTreeS(fRoiifile));
+    TString loadname(name);
+    loadname+="Loader";
+    
+    AliRunLoader *inRL = 0x0, *outRL = 0x0;
+    AliLoader *ingime = 0x0, *outgime = 0x0;    
+    
+    outRL = AliRunLoader::GetRunLoader(fManager->GetOutputFolderName());    
+    if ( outRL == 0x0)
+     {
+       Error("Exec","Can not get Output Run Loader");
+       return;
+     }
+    outRL->GetEvent(event);
+    outgime = outRL->GetLoader(loadname);
+    if ( outgime == 0x0)
+     {
+       Error("Exec","Can not get Output ITS Loader");
+       return;
+     }
+
+    outgime->LoadDigits("update");
+    if (outgime->TreeD() == 0x0) outgime->MakeTree("D");
+    
+    // Digitize
+    fITS->MakeBranchInTreeD(outgime->TreeD());
+    if(fRoif!=0) {
+      AliDebug(1,"Region of Interest digitization selected");
+    }
+    else {
+      AliDebug(1,"No Region of Interest selected. Digitizing everything");
+    }
+    if(fModActive==0) fRoif = 0; // fModActive array must be define for RIO cuts.
+
+    for(ifiles=0; ifiles<nfiles; ifiles++ )
+     {
+       inRL =  AliRunLoader::GetRunLoader(fManager->GetInputFolderName(fl[ifiles]));
+       ingime = inRL->GetLoader(loadname);
+       if (ingime->TreeS() == 0x0) ingime->LoadSDigits();
+     }
 
-    for( Int_t module=0; module<size; module++ ){
-       if(fActive && fRoif!=-1) if(!fActive[module]) continue;
-        Int_t id = fITS->GetITSgeom()->GetModuleType( module );
-        if( !all && !det[id] ) continue;
-        iDetType = fITS->DetType( id );
-        sim      = (AliITSsimulation*)iDetType->GetSimulationModel();
-        if(!sim) {
+    for(module=0; module<size; module++ )
+     {
+       if(fModActive && fRoif!=0) if(!fModActive[module]) continue;
+       id = fITS->GetITSgeom()->GetModuleType(module);
+       if(!all && !det[id]) continue;
+       sim      = (AliITSsimulation*)fITS->GetSimulationModel(id);
+       if(!sim) {
             Error( "Exec", "The simulation class was not instanciated!" );
             exit(1);
         } // end if !sim
-
-        // Fill the module with the sum of SDigits
-        sim->InitSimulationModule( module, event );
-//     cout << "Module=" << module;
-        for( Int_t ifiles=0; ifiles<nfiles; ifiles++ ){
-//         cout <<" ifiles=" << ifiles;
-            TTree *treeS = GetManager()->GetInputTreeS(ifiles);
-            if( !(treeS && fITS->GetSDigits()) ) continue;   
-            TBranch *brchSDigits = treeS->GetBranch( name );
-            if( brchSDigits ) {
+           // Fill the module with the sum of SDigits
+        sim->InitSimulationModule(module, event);
+       //cout << "Module=" << module;
+        for(ifiles=0; ifiles<nfiles; ifiles++ )
+         {
+           if(fRoif!=0) if(!fModActive[module]) continue;
+            
+           inRL =  AliRunLoader::GetRunLoader(fManager->GetInputFolderName(fl[ifiles]));
+           ingime = inRL->GetLoader(loadname);
+           
+           TTree *treeS = ingime->TreeS();
+           fITS->SetTreeAddress();
+           
+           if( !treeS  ) continue; 
+           TBranch *brchSDigits = treeS->GetBranch( name );
+           if( brchSDigits ) 
+            {
                 brchSDigits->SetAddress( &sdig ); 
             } else {
                 Error( "Exec", "branch ITS not found in TreeS, input file %d ",
                        ifiles );
+               return;
             } // end if brchSDigits
             sdig->Clear();
-            Int_t mask = GetManager()->GetMask( ifiles );
-            
+            mask = GetManager()->GetMask(ifiles);
             // add summable digits to module
             brchSDigits->GetEvent( module );
-            sim->AddSDigitsToModule( sdig, mask );    
+            lmod = sim->AddSDigitsToModule(sdig,mask);
+            if(fRegionOfInterest && (ifiles==0))
+             {
+               fModActive[module] = lmod;
+             } // end if
         } // end for ifiles
-//     cout << " end ifiles loop" << endl;
+       //cout << " end ifiles loop" << endl;
         // Digitize current module sum(SDigits)->Digits
-        sim->FinishSDigitiseModule();
+       sim->FinishSDigitiseModule();
 
         // fills all branches - wasted disk space
-        GetManager()->GetTreeD()->Fill();
-        fITS->ResetDigits();
+        outgime->TreeD()->Fill();
+       fITS->ResetDigits();
     } // end for module
-//    cout << "end modules loop"<<endl;
-    GetManager()->GetTreeD()->GetEntries();
-    GetManager()->GetTreeD()->Write( 0, TObject::kOverwrite );
-    // reset tree
-    GetManager()->GetTreeD()->Reset();
     
+    outgime->TreeD()->AutoSave();
+    outgime->WriteDigits("OVERWRITE");
+    outgime->UnloadDigits();
+    for(ifiles=0; ifiles<nfiles; ifiles++ )
+     {
+       inRL =  AliRunLoader::GetRunLoader(fManager->GetInputFolderName(fl[ifiles]));
+       ingime = inRL->GetLoader(loadname);
+       ingime->UnloadSDigits();
+     }
+
+    delete[] fl;
     sdig->Clear();
     delete sdig;
+    for(Int_t i=0;i<fITS->GetITSgeom()->GetIndexMax();i++) fModActive[i] = kTRUE;
+    
+
+    return;
 }
 //______________________________________________________________________
 void AliITSDigitizer::SetByRegionOfInterest(TTree *ts){
@@ -301,34 +301,39 @@ void AliITSDigitizer::SetByRegionOfInterest(TTree *ts){
     //      none.
     // Return:
     //      none.
-    Int_t m,nm;
-    if(gAlice==0 && ts==0) return;
-    if(ts==0) ts = gAlice->TreeS();
+    Int_t m,nm,i;
+
+    if(fRoif==0) return;
+    if(ts==0) return;
     TBranch *brchSDigits = ts->GetBranch(fITS->GetName());
     TClonesArray * sdig = new TClonesArray( "AliITSpListItem",1000 );
-//    cout << "Region of Interest ts="<<ts<<" brchSDigits="<<brchSDigits<<" sdig="<<sdig<<endl;
+    //cout << "Region of Interest ts="<<ts<<" brchSDigits="<<brchSDigits<<" sdig="<<sdig<<endl;
 
     if( brchSDigits ) {
-       brchSDigits->SetAddress( &sdig ); 
+      brchSDigits->SetAddress( &sdig );
     } else {
-       Error( "SetByRegionOfInterest","branch ITS not found in TreeS");
-       return;
+      Error( "SetByRegionOfInterest","branch ITS not found in TreeS");
+      return;
     } // end if brchSDigits
 
     nm = fITS->GetITSgeom()->GetIndexMax();
     for(m=0;m<nm;m++){
-//     cout << " fActive["<<m<<"]=";
-       fActive[m] = kFALSE; // Not active by default
-       sdig->Clear();
-       brchSDigits->GetEvent(m);
-       if(sdig->GetLast()>=0){ // activate the necessary modules
-           if(fRoif>=0){
-               fActive[m] = kTRUE;
-//             cout << "kTRUE";
-           } // end if
-       } // end if.
-//     cout << endl;
+      //cout << " fModActive["<<m<<"]=";
+      fModActive[m] = kFALSE; // Not active by default
+      sdig->Clear();
+      brchSDigits->GetEvent(m);
+      if(sdig->GetLast()>=0) for(i=0;i<sdig->GetLast();i++){
+          // activate the necessary modules
+          if(((AliITSpList*)sdig->At(m))->GetpListItem(i)->GetSignal()>0.0){ // Must have non zero signal.
+            fModActive[m] = kTRUE;
+            break;
+          } // end if
+      } // end if. end for i.
+      //cout << fModActive[m];
+      //cout << endl;
     } // end for m
+    AliDebug(1,"Digitization by Region of Interest selected");
     sdig->Clear();
     delete sdig;
+    return;
 }