/************************************************************************** * 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. * **************************************************************************/ /* $Log$ Revision 1.3 2002/03/25 10:48:55 nilsen New ITS SDigit merging with region of interest cut. Update for changes in AliDigitizer. Additional optimization should be done. 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 */ #include #include #include #include #include #include #include #include #include "AliITSDigitizer.h" #include "AliITSpList.h" #include "AliITSmodule.h" #include "AliITSsimulation.h" #include "AliITSDetType.h" #include "AliITSgeom.h" ClassImp(AliITSDigitizer) //______________________________________________________________________ AliITSDigitizer::AliITSDigitizer() : AliDigitizer(){ // Default constructor. Assign fITS since it is never written out from // here. // Inputs: // Option_t * opt Not used // Outputs: // none. // Return: // A blank AliITSDigitizer class. fITS = 0; fActive = 0; fRoif = -1; fRoiifile = 0; fInit = kFALSE; } //______________________________________________________________________ AliITSDigitizer::AliITSDigitizer(AliRunDigitizer *mngr) : AliDigitizer(mngr){ // Standard constructor. Assign fITS since it is never written out from // here. // Inputs: // Option_t * opt Not used // Outputs: // none. // Return: // An AliItSDigitizer class. fITS = 0; fActive = 0; fRoif = -1; fRoiifile = 0; fInit = kFALSE; } //______________________________________________________________________ AliITSDigitizer::~AliITSDigitizer(){ // Default destructor. // Inputs: // Option_t * opt Not used // Outputs: // none. // Return: // none. fITS = 0; // don't delete fITS. Done else where. if(fActive) delete[] fActive; } //______________________________________________________________________ Bool_t AliITSDigitizer::Init(){ // Initialization. Set up region of interest, if switched on, and // loads ITS and ITSgeom. // Inputs: // none. // Outputs: // none. // Return: // none. fInit = kTRUE; // Assume for now init will work. if(!gAlice) { fITS = 0; fActive = 0; fRoif = -1; fRoiifile = 0; fInit = kFALSE; Warning("Init","gAlice not found"); return fInit; } // end if fITS = (AliITS *)(gAlice->GetDetector("ITS")); if(!fITS){ fActive = 0; fRoif = -1; fRoiifile = 0; fInit = kFALSE; Warning("Init","ITS not found"); return fInit; } else if(fITS->GetITSgeom()){ //cout << "fRoif,fRoiifile="<GetITSgeom()->GetIndexMax()]; } else{ fActive = 0; fRoif = -1; fRoiifile = 0; fInit = kFALSE; Warning("Init","ITS geometry not found"); return fInit; } // end if // fActive needs to be set to a default all kTRUE value for(Int_t i=0;iGetITSgeom()->GetIndexMax();i++) fActive[i] = kTRUE; /* This will not work from Init. ts is aways returned as zero. TTree *ts; if(fRoif>=0 && fRoiifile>=0 && fRoiifileGetNinputs()){ ts = GetManager()->GetInputTreeS(fRoiifile); if(!ts){ if(!gAlice) ts = gAlice->TreeS(); if(!ts){ cout <<"The TTree TreeS needed to set by region not found." " No region of interest cut will be applied."<< endl; return fInit; } // end if } // end if cout << "calling SetByReionOfInterest ts="<< ts <SetDefaultSimulation(); setDef = kFALSE; 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;idMakeBranchInTreeD(GetManager()->GetTreeD()); for(module=0; moduleGetITSgeom()->GetModuleType(module); if(!all && !det[id]) continue; iDetType = fITS->DetType( id ); sim = (AliITSsimulation*)iDetType->GetSimulationModel(); 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(ifiles=0; ifilesClear(); mask = GetManager()->GetMask(ifiles); // add summable digits to module brchSDigits->GetEvent( module ); lmod = sim->AddSDigitsToModule(sdig,mask); if(ifiles==0){ fActive[module] = lmod; } // end if //cout << " fActive["<Digits sim->FinishSDigitiseModule(); // fills all branches - wasted disk space GetManager()->GetTreeD()->Fill(); fITS->ResetDigits(); } // end for module //cout << "end modules loop"<GetTreeD()->AutoSave(); delete[] fl; sdig->Clear(); delete sdig; for(Int_t i=0;iGetITSgeom()->GetIndexMax();i++) fActive[i] = kTRUE; return; } //______________________________________________________________________ void AliITSDigitizer::SetByRegionOfInterest(TTree *ts){ // Scans through the ITS branch of the SDigits tree, ts, for modules // which have SDigits in them. For these modules, a flag is set to // digitize only these modules. The value of fRoif determines how many // neighboring modules will also be turned on. fRoif=0 will turn on only // those modules with SDigits in them. fRoif=1 will turn on, in addition, // those modules that are +-1 module from the one with the SDigits. And // So on. This last feature is not supported yet. // Inputs: // TTree *ts The tree in which the existing SDigits will define the // region of interest. // Outputs: // none. // Return: // none. 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="<GetITSgeom()->GetIndexMax(); for(m=0;m