]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWGJE/EMCALJetTasks/UserTasks/AliEMCalTriggerTracksAnalysisComponent.cxx
Include binning component in the global analysis framework
[u/mrichter/AliRoot.git] / PWGJE / EMCALJetTasks / UserTasks / AliEMCalTriggerTracksAnalysisComponent.cxx
index 891cdc4b72bae8146c50f723e10867b0459bf860..347bad902b33e6daabd5c7146f4dc66dbd593546 100644 (file)
@@ -1,21 +1,37 @@
+/**************************************************************************
+ * Copyright(c) 1998-2014, 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.                  *
+ **************************************************************************/
 /*
- * AliEmcalTriggerTracksAnalysisComponent.cxx
+ * Base class for anaysis components. Inheriting classes have to implement the
+ * functions CreateHistos and Process.
  *
- *  Created on: 03.12.2014
- *      Author: markusfasel
+ *   Author: Markus Fasel
  */
+#include "AliEMCalTriggerTracksAnalysisComponent.h"
 
-#include <AliEMCalTriggerTracksAnalysisComponent.h>
+ClassImp(EMCalTriggerPtAnalysis::AliEMCalTriggerTracksAnalysisComponent)
 
 namespace EMCalTriggerPtAnalysis {
 
-AliEMCalTriggerTracksAnalysisComponent::AliEMCalTriggerTracksAnalysisComponent() {
-  // TODO Auto-generated constructor stub
-
-}
-
-AliEMCalTriggerTracksAnalysisComponent::~AliEMCalTriggerTracksAnalysisComponent() {
-  // TODO Auto-generated destructor stub
+AliEMCalTriggerTracksAnalysisComponent::AliEMCalTriggerTracksAnalysisComponent() :
+  TObject(),
+  fHistos(NULL),
+  fBinning(NULL)
+{
+  /*
+   * Default constructor
+   */
 }
 
 } /* namespace EMCalTriggerPtAnalysis */