]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
remove dummy handler. Added functionality to AliDummyHandler in STEER
authormverweij <marta.verweij@cern.ch>
Thu, 13 Feb 2014 08:58:41 +0000 (09:58 +0100)
committermverweij <marta.verweij@cern.ch>
Thu, 13 Feb 2014 09:14:53 +0000 (10:14 +0100)
PWG/CMakelibPWGEMCAL.pkg
PWG/EMCAL/AliEmcalDummyHandler.cxx [deleted file]
PWG/EMCAL/AliEmcalDummyHandler.h [deleted file]
PWG/PWGEMCALLinkDef.h

index 23cd5e3b861f82c83e50b24a047daa4a8dde80b8..e32fa5c1783c7c29af87fe563ab54590bb97fe6c 100644 (file)
@@ -30,7 +30,6 @@ set ( SRCS
  EMCAL/AliAnalysisTaskEMCALClusterizeFast.cxx
  EMCAL/AliAnalysisTaskEmcal.cxx
  EMCAL/AliClusterContainer.cxx
- EMCAL/AliEmcalDummyHandler.cxx
  EMCAL/AliEMCALClusterParams.cxx
  EMCAL/AliEmcalAodTrackFilterTask.cxx
  EMCAL/AliEmcalClusTrackMatcherTask.cxx
diff --git a/PWG/EMCAL/AliEmcalDummyHandler.cxx b/PWG/EMCAL/AliEmcalDummyHandler.cxx
deleted file mode 100644 (file)
index bc45e68..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-/**************************************************************************
- * Copyright(c) 1998-2007, 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.                  *
- **************************************************************************/
-
-//-------------------------------------------------------------------------
-//     Dummy implementation of the input handler e.g. for the case of event-loop steered analysis
-//     Author: M .Verweij
-//-------------------------------------------------------------------------
-
-#include "AliEmcalDummyHandler.h"
-#include <TTree.h>
-
-ClassImp(AliEmcalDummyHandler)
-
-//______________________________________________________________________________
-AliEmcalDummyHandler::AliEmcalDummyHandler() :
-  AliDummyHandler(),
-  fEvent(0)
-
-{
-  // Default constructor
-}
-
-//______________________________________________________________________________
-AliEmcalDummyHandler::AliEmcalDummyHandler(const char* name, const char* title):
-  AliDummyHandler(name, title),
-  fEvent(0)
-{
-   // Constructor
-}
-
-//______________________________________________________________________________
-AliEmcalDummyHandler::~AliEmcalDummyHandler() 
-{
-// Destructor
-}
diff --git a/PWG/EMCAL/AliEmcalDummyHandler.h b/PWG/EMCAL/AliEmcalDummyHandler.h
deleted file mode 100644 (file)
index eb17b88..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef ALIEMCALDUMMYHANDLER_H
-#define ALIEMCALDUMMYHANDLER_H
-/* Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-
-//-------------------------------------------------------------------------
-//     Dummy implementation of the input handler e.g. for the case of event-loop steered analysis
-//     Author: M. Verweij
-//-------------------------------------------------------------------------
-
-#include "AliDummyHandler.h"
-
-class AliEmcalDummyHandler : public AliDummyHandler {
-
- public:
-    AliEmcalDummyHandler();
-    AliEmcalDummyHandler(const char* name, const char* title);
-    virtual ~AliEmcalDummyHandler();
-
-    void                 SetEvent(AliVEvent *e)  { fEvent = e    ; } 
-    AliVEvent           *GetEvent()        const { return fEvent ; }
-
- protected:
-    AliVEvent    *fEvent;         //! Pointer to the event
-
- private:
-    AliEmcalDummyHandler(const AliEmcalDummyHandler& handler);             
-    AliEmcalDummyHandler& operator=(const AliEmcalDummyHandler& handler);  
-
-    ClassDef(AliEmcalDummyHandler, 1);
-};
-
-#endif
index df84d66944bacfe016705e1bff19c7c3538a7e69..965837f27e38b9142a44c0fa165af345895f9bfb 100644 (file)
@@ -7,7 +7,6 @@
 #pragma link C++ class AliAnalysisTaskEMCALClusterizeFast+;
 #pragma link C++ class AliAnalysisTaskEmcal+;
 #pragma link C++ class AliClusterContainer+;
-#pragma link C++ class AliEmcalDummyHandler;
 #pragma link C++ class AliEMCALClusterParams+;
 #pragma link C++ class AliEmcalAodTrackFilterTask+;
 #pragma link C++ class AliEmcalClusTrackMatcherTask+;