]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Removing obsolete class (Christian)
authormartinez <martinez@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 11 Mar 2005 11:09:43 +0000 (11:09 +0000)
committermartinez <martinez@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 11 Mar 2005 11:09:43 +0000 (11:09 +0000)
MUON/AliMUONDigitizerv1.cxx [deleted file]
MUON/AliMUONDigitizerv1.h [deleted file]

diff --git a/MUON/AliMUONDigitizerv1.cxx b/MUON/AliMUONDigitizerv1.cxx
deleted file mode 100644 (file)
index ab07f0b..0000000
+++ /dev/null
@@ -1,319 +0,0 @@
-/**************************************************************************
- * 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.                  *
- **************************************************************************/
-
-/* $Id$ */
-
-/////////////////////////////////////////////////////////////////////////////////
-//
-// AliMUONDigitizerv1 implements a full digitizer to digitize digits directly
-// from hits. It also performs merging over several input streams. 
-// The first input stream is assumed to be the signal and all other input
-// streams are assumed to be background. SDigits are never generated by this
-// digitizer and one should use the AliMUONSDigitizerv1 for that task. 
-//
-// NOTE: This digitizer will become depricated in the future in favour of
-//       AliMUONSDigitizerv1 and AliMUONDigitizerv2.
-//
-/////////////////////////////////////////////////////////////////////////////////
-
-#include <TTree.h> 
-
-#include "AliMUON.h"
-#include "AliMUONData.h"
-#include "AliMUONLoader.h"
-#include "AliMUONChamber.h"
-#include "AliMUONConstants.h"
-#include "AliMUONDigitizerv1.h"
-#include "AliMUONHit.h"
-#include "AliMUONTransientDigit.h"
-#include "AliMUONTriggerDecision.h"
-#include "AliLog.h"
-
-ClassImp(AliMUONDigitizerv1)
-
-//___________________________________________
-AliMUONDigitizerv1::AliMUONDigitizerv1() : AliMUONDigitizer()
-{
-       // Default ctor - don't use it
-}
-
-//___________________________________________
-AliMUONDigitizerv1::AliMUONDigitizerv1(AliRunDigitizer* manager) : AliMUONDigitizer(manager)
-{
-       // ctor which should be used
-
-}
-
-//___________________________________________
-AliMUONDigitizerv1::~AliMUONDigitizerv1()
-{
-       // dtor
-}
-//-----------------------------------------------------------------------
-
-void AliMUONDigitizerv1::CleanupTriggerArrays()
-{
-  fTrigDec->ClearDigits();
-}
-
-//-----------------------------------------------------------------------
-void AliMUONDigitizerv1::GenerateTransientDigits()
-{
-// Loops over all tracks and hits in the current selected event and calls 
-// MakeTransientDigitsFromHit for each hit. 
-// Note: Charge correlation is applied to the tracking chambers. 
-
-       TTree* treeH = fGime->TreeH();
-       AliDebug(2, Form("Generating transient digits using treeH = 0x%X"
-                       , (void*)treeH));
-       //
-       // Loop over tracks
-       Int_t ntracks = (Int_t) treeH->GetEntries();
-       for (Int_t itrack = 0; itrack < ntracks; itrack++) 
-       {
-               AliDebug(3, Form("Processing track %d...", itrack));
-               fMUONData->ResetHits();
-               treeH->GetEvent(itrack);
-               //
-               //  Loop over hits
-               TClonesArray* hits = fMUONData->Hits();
-               for (Int_t ihit = 0; ihit < hits->GetEntriesFast(); ihit++) 
-               {
-                       AliMUONHit* mHit = static_cast<AliMUONHit*>( hits->At(ihit) );
-                       Int_t ichamber = mHit->Chamber()-1;  // chamber number
-                       if (ichamber > AliMUONConstants::NCh()-1) 
-                       {
-                               AliError(Form("Hit 0x%X has a invalid chamber number: %d", ichamber));
-                               continue;
-                       }
-                       //
-                       //Dumping Hit content:
-                       AliDebug(3,Form("Hit %d: chamber = %d\tX = %f\tY = %f\tZ = %f\teloss = %f",
-                                       ihit, mHit->Chamber(), mHit->X(), mHit->Y(), mHit->Z(), mHit->Eloss()
-                                   ));
-                       // 
-                       // Inititializing Correlation
-                       AliMUONChamber& chamber = fMUON->Chamber(ichamber);
-                       chamber.ChargeCorrelationInit();
-                       if (ichamber < AliMUONConstants::NTrackingCh()) 
-                       {
-                               // Tracking Chamber
-                               // Initialize hit position (cursor) in the segmentation model 
-                         if (GetSegmentation() == 1) // old segmentation
-                           chamber.SigGenInit(mHit->X(), mHit->Y(), mHit->Z());
-                         else 
-                           chamber.SigGenInit(mHit);
-
-                       } // else do nothing for Trigger Chambers
-                       
-                       MakeTransientDigitsFromHit(itrack, ihit, mHit);
-               } // hit loop
-       } // track loop      
-}
-
-//--------------------------------------------------------------------------
-void AliMUONDigitizerv1::MakeTransientDigitsFromHit(Int_t track, Int_t iHit, AliMUONHit * mHit)
-{  
-// This method is called for every hit in an event to generate AliMUONTransientDigits 
-// from the hit and add these to fTDList.
-// The AliMUONChamber::DisIntegration method us used to figure out which pads are 
-// fired for a given hit. We then loop over the fired pads and add an AliMUONTransientDigit
-// for each pad.
-
-       AliDebug(4,Form("Making transient digit for hit number %d.", iHit));
-               
-       //
-       // Calls the charge disintegration method of the current chamber 
-       AliDebug(5,"Calling AliMUONChamber::DisIngtegration...");
-
-       Float_t newdigit[6][500];  // Pad information
-       Int_t nnew=0;              // Number of touched Pads per hit
-       Int_t ichamber = mHit->Chamber()-1;
-       AliMUONChamber& chamber = fMUON->Chamber(ichamber);
-       if (GetSegmentation() == 1)
-         chamber.DisIntegration(mHit->Eloss(), mHit->Age(), mHit->X(), mHit->Y(), mHit->Z(), nnew, newdigit);
-       else
-         chamber.DisIntegration(mHit, nnew, newdigit);
-
-       // Creating new TransientDigits from hit
-       for(Int_t iTD = 0; iTD < nnew; iTD++) 
-       {
-               Int_t charge;   
-               Int_t digits[7];
-               
-               digits[0] = Int_t(newdigit[1][iTD]);  // Padx of the Digit
-               digits[1] = Int_t(newdigit[2][iTD]);  // Pady of the Digit
-               digits[2] = Int_t(newdigit[5][iTD]);  // Cathode plane
-               digits[3] = Int_t(newdigit[3][iTD]);  // Induced charge in the Pad
-               if (fSignal)
-               { 
-                       charge = digits[3];
-                       digits[4] = Int_t(newdigit[3][iTD]);  // Signal due to physics
-               }
-               else
-               {
-                       charge = digits[3] + fMask;
-                       digits[4] = 0;    // No signal due to physics since this is now background.
-               }
-               digits[5] = iHit+fMask;    // Hit number in the list
-               if (GetSegmentation() == 1)
-                 digits[6] = 0;
-               else
-                 digits[6] =  mHit->DetElemId();
-
-               AliDebug(5,Form("MakeTransientDigitsFromHit", 
-                               "DisIntegration result %d: PadX %d\tPadY %d\tPlane %d\tCharge %d\tHit %d\tidDE %d",
-                               iTD, digits[0], digits[1], digits[2], digits[3], digits[5], digits[6]));
-
-               AliMUONTransientDigit* mTD = new AliMUONTransientDigit(ichamber, digits);
-               mTD->AddToTrackList(track + fMask, charge);
-
-               OnCreateTransientDigit(mTD, mHit);
-               AddOrUpdateTransientDigit(mTD);
-       }
-}
-
-//------------------------------------------------------------------------
-void AliMUONDigitizerv1::AddDigit(Int_t chamber, Int_t tracks[kMAXTRACKS], Int_t charges[kMAXTRACKS], Int_t digits[7])
-{
-// Derived to add digits to TreeD.
-  fMUONData->AddDigit(chamber, tracks, charges, digits);  
-}
-
-//------------------------------------------------------------------------
-void AliMUONDigitizerv1::AddDigitTrigger(Int_t chamber, Int_t tracks[kMAXTRACKS], Int_t charges[kMAXTRACKS], Int_t digits[7])
-{
-// Derived to add digits to TreeD for trigger.
-  fTrigDec->AddDigit(chamber, tracks, charges, digits); 
-}
-
-//------------------------------------------------------------------------
-void AliMUONDigitizerv1::FillTriggerOutput()
-{
-// Derived to fill TreeD and resets the trigger array in fMUONData.
-
-       AliDebug(3,"Filling trees with trigger.");
-       fMUONData->Fill("GLT");
-       fMUONData->ResetTrigger();
-}
-
-//------------------------------------------------------------------------
-void AliMUONDigitizerv1::CreateTrigger()
-{
-  fMUONData->MakeBranch("GLT");
-  fMUONData->SetTreeAddress("GLT");
-  fTrigDec->Digits2Trigger(); 
-  FillTriggerOutput(); 
-
-}
-
-//------------------------------------------------------------------------
-Int_t AliMUONDigitizerv1::GetSignalFrom(AliMUONTransientDigit* td)
-{
-// Derived to apply the chamber response model to the digit. 
-// Using AliMUONChamber::ResponseModel() for this.
-
-       AliDebug(4, "Applying response of chamber to TransientDigit signal.");
-       //
-       //  Digit Response (noise, threshold, saturation, ...)
-       Int_t q = td->Signal(); 
-       AliMUONChamber& chamber = fMUON->Chamber(td->Chamber());
-       AliMUONResponse* response = chamber.ResponseModel();
-       q = response->DigitResponse(q, td);
-       return q;
-}
-
-//------------------------------------------------------------------------
-Bool_t AliMUONDigitizerv1::InitOutputData(AliMUONLoader* muonloader)
-{
-// Derived to initialize the output digits tree TreeD, create it if necessary
-// and sets the fMUONData tree address to treeD.
-
-       AliDebug(3, "Creating digits branch and setting the tree address.");
-
-       fMUONData->SetLoader(muonloader);
-
-       // New branch per chamber for MUON digit in the tree of digits
-       if (muonloader->TreeD() == NULL)
-       {
-               muonloader->MakeDigitsContainer();
-               if (muonloader->TreeD() == NULL)
-               {
-                       AliError("Could not create TreeD.");
-                       return kFALSE;
-               }
-       }
-
-       fMUONData->MakeBranch("D");
-       fMUONData->SetTreeAddress("D");
-       
-       return kTRUE;
-}
-
-//------------------------------------------------------------------------
-void AliMUONDigitizerv1::FillOutputData()
-{
-// Derived to fill TreeD and resets the digit array in fMUONData.
-
-       AliDebug(3, "Filling trees with digits.");
-       fMUONData->Fill("D");
-       fMUONData->ResetDigits();
-}
-
-//------------------------------------------------------------------------
-void AliMUONDigitizerv1::CleanupOutputData(AliMUONLoader* muonloader)
-{
-// Derived to write the digits tree and then unload the digits tree once written.
-
-       AliDebug(3, "Writing digits and releasing pointers.");
-       muonloader->WriteDigits("OVERWRITE");
-       muonloader->UnloadDigits();
-}
-
-
-//------------------------------------------------------------------------
-Bool_t AliMUONDigitizerv1::InitInputData(AliMUONLoader* muonloader)
-{
-// Derived to initialise the input to read from TreeH the hits tree. 
-// If the hits are not loaded then we load the hits using the muon loader.
-
-       AliDebug(3, "Loading hits in READ mode and setting the tree address.");
-
-       fMUONData->SetLoader(muonloader);
-
-       if (muonloader->TreeH() == NULL)
-       {
-               muonloader->LoadHits("READ");
-               if (muonloader->TreeH() == NULL)
-               {
-                       AliError("Can not load the hits tree.");
-                       return kFALSE;
-               }
-       }
-
-       fMUONData->SetTreeAddress("H");
-       return kTRUE;
-}
-
-//------------------------------------------------------------------------
-void AliMUONDigitizerv1::CleanupInputData(AliMUONLoader* muonloader)
-{
-// Derived to release the loaded hits and unload them.
-
-       AliDebug(3, "Releasing loaded hits.");
-       fMUONData->ResetHits();
-       muonloader->UnloadHits();
-}
-
diff --git a/MUON/AliMUONDigitizerv1.h b/MUON/AliMUONDigitizerv1.h
deleted file mode 100644 (file)
index 0704ded..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-#ifndef ALIMUONDIGITIZERV1_H
-#define ALIMUONDIGITIZERV1_H
-/* Copyright(c) 1998-2001, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-
-/* $Id$ */
-// Revision of includes 07/05/2004
-
-// The AliMUONDigitizer procees :
-// - Addition of hits from different tracks
-// - Merging of hits from different files
-// - The response function of the chamber.
-// - Simulation of the electronic noise, threshold and saturation
-// 
-// Gines MARTINEZ Subatech Feb 2003 
-
-#include "AliMUONDigitizer.h"
-#include "AliMUONDigit.h"
-
-class AliMUONLoader;
-class AliMUONHit;
-class AliMUONTransientDigit;
-
-class AliMUONDigitizerv1 : public AliMUONDigitizer 
-{
- public:
-       AliMUONDigitizerv1();
-       virtual ~AliMUONDigitizerv1();
-       
-       // Preferred constructor which assigns the manager object.
-       AliMUONDigitizerv1(AliRunDigitizer * manager);
-    
- protected:
-       // Generation of a TransientDigits from a hit object.
-       void MakeTransientDigitsFromHit(Int_t itrack, Int_t ihit, AliMUONHit * mHit);
-       
-       // The following methods are all derived from AliMUONDigitizer
-       virtual void GenerateTransientDigits();
-       virtual void AddDigit(Int_t chamber, Int_t tracks[kMAXTRACKS], Int_t charges[kMAXTRACKS], Int_t digits[7]);
-       virtual Int_t GetSignalFrom(AliMUONTransientDigit* td);
-       virtual Bool_t InitOutputData(AliMUONLoader* muonloader);
-       virtual void FillOutputData();
-       virtual void CleanupOutputData(AliMUONLoader* muonloader);
-       virtual Bool_t InitInputData(AliMUONLoader* muonloader);
-       virtual void CleanupInputData(AliMUONLoader* muonloader);
-
-       // for trigger purpose
-       virtual void CreateTrigger();
-       virtual void CleanupTriggerArrays();
-       virtual void AddDigitTrigger(Int_t chamber, Int_t tracks[kMAXTRACKS], Int_t charges[kMAXTRACKS], Int_t digits[7]);
-       virtual void FillTriggerOutput();
-
-       ClassDef(AliMUONDigitizerv1, 2)
-};    
-#endif
-