From 0b28fd572e7c99af7c7f6d12acd7044923da6cdf Mon Sep 17 00:00:00 2001 From: alibrary Date: Thu, 1 Feb 2007 08:23:08 +0000 Subject: [PATCH] Adding includes now needed by ROOT --- ANALYSIS/AliAnalysisTask.cxx | 6 +++--- ANALYSIS/Aliengui/AliPackageFrame.cxx | 1 + ANALYSIS/Aliengui/AliSelectorFrame.cxx | 9 +++++---- ESDCheck/AliAnalysisTaskPt.cxx | 8 ++++++-- ESDCheck/AliEMCALQATask.cxx | 10 +++++++--- ESDCheck/AliFMDQATask.cxx | 8 ++++++-- ESDCheck/AliHMPIDQATask.cxx | 10 +++++++--- ESDCheck/AliMUONQATask.cxx | 6 +++++- ESDCheck/AliPHOSQATask.cxx | 10 +++++++--- ESDCheck/AliPMDQATask.cxx | 8 ++++++-- ESDCheck/AliT0QATask.cxx | 8 ++++++-- ESDCheck/AliTRDQATask.cxx | 21 ++++++++++++--------- EVE/Alieve/TPCLoader.h | 1 + EVE/Alieve/TRDModuleImp.h | 2 ++ EVE/Reve/PODs.cxx | 2 ++ EVE/Reve/RGBAPalette.cxx | 1 + EVE/Reve/RGTopFrame.h | 5 ++++- EVE/Reve/RGValuators.cxx | 1 + EVE/Reve/Reve.cxx | 1 + EVE/Reve/ZTrans.cxx | 1 + LHC/AliLhcBeam.cxx | 8 +++++--- LHC/AliLhcProcessIBS.cxx | 13 +++++++------ 22 files changed, 96 insertions(+), 44 deletions(-) diff --git a/ANALYSIS/AliAnalysisTask.cxx b/ANALYSIS/AliAnalysisTask.cxx index ed917c59336..223845c4976 100644 --- a/ANALYSIS/AliAnalysisTask.cxx +++ b/ANALYSIS/AliAnalysisTask.cxx @@ -68,9 +68,9 @@ // //============================================================================== -#include "Riostream.h" - -#include "TClass.h" +#include +#include +#include //#include "AliLog.h" #include "AliAnalysisTask.h" diff --git a/ANALYSIS/Aliengui/AliPackageFrame.cxx b/ANALYSIS/Aliengui/AliPackageFrame.cxx index 89794adb98b..35d45a85975 100644 --- a/ANALYSIS/Aliengui/AliPackageFrame.cxx +++ b/ANALYSIS/Aliengui/AliPackageFrame.cxx @@ -28,6 +28,7 @@ #include #include #include +#include #include #include "AliAnalysisGUI.h" diff --git a/ANALYSIS/Aliengui/AliSelectorFrame.cxx b/ANALYSIS/Aliengui/AliSelectorFrame.cxx index 6a21a81f836..a9cd13e7cdc 100644 --- a/ANALYSIS/Aliengui/AliSelectorFrame.cxx +++ b/ANALYSIS/Aliengui/AliSelectorFrame.cxx @@ -21,11 +21,12 @@ // Origin: Panos Christakoglou, UOA-CERN, Panos.Christakoglou@cern.ch //----------------------------------------------------------------- -#include "TGFileDialog.h" -#include "TGTextEntry.h" -#include "TGLabel.h" -#include "TObjString.h" +#include +#include +#include +#include +#include #include "AliTagAnalysisFrame.h" #include "AliAnalysisGUI.h" diff --git a/ESDCheck/AliAnalysisTaskPt.cxx b/ESDCheck/AliAnalysisTaskPt.cxx index edb5ad0cedf..33d41f2a84b 100644 --- a/ESDCheck/AliAnalysisTaskPt.cxx +++ b/ESDCheck/AliAnalysisTaskPt.cxx @@ -12,16 +12,20 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ + +/* $Id$ */ + //_________________________________________________________________________ // A test analysis task to check the pt of tracks distribution in simulated data // //*-- Panos ////////////////////////////////////////////////////////////////////////////// +#include #include -#include #include -#include +#include +#include #include #include "AliAnalysisTaskPt.h" diff --git a/ESDCheck/AliEMCALQATask.cxx b/ESDCheck/AliEMCALQATask.cxx index 1e3849c4496..1c94fe2656c 100644 --- a/ESDCheck/AliEMCALQATask.cxx +++ b/ESDCheck/AliEMCALQATask.cxx @@ -12,21 +12,25 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ + +/* $Id$ */ + //_________________________________________________________________________ // An analysis task to check the EMCAL photon data in simulated data // //*-- Yves Schutz ////////////////////////////////////////////////////////////////////////////// +#include #include +#include #include #include #include -#include -#include #include +#include +#include #include -#include #include "AliEMCALQATask.h" #include "AliESD.h" diff --git a/ESDCheck/AliFMDQATask.cxx b/ESDCheck/AliFMDQATask.cxx index ee3af257fe8..be0262664aa 100644 --- a/ESDCheck/AliFMDQATask.cxx +++ b/ESDCheck/AliFMDQATask.cxx @@ -12,17 +12,21 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ + +/* $Id$ */ + //_________________________________________________________________________ // An analysis task to check the FMD data in simulated data // //*-- Hans Hjersing Dalsgaard ////////////////////////////////////////////////////////////////////////////// +#include #include +#include #include -#include #include -#include +#include #include "AliFMDQATask.h" #include "AliESD.h" diff --git a/ESDCheck/AliHMPIDQATask.cxx b/ESDCheck/AliHMPIDQATask.cxx index 46326c8ef94..86a294a4f1b 100644 --- a/ESDCheck/AliHMPIDQATask.cxx +++ b/ESDCheck/AliHMPIDQATask.cxx @@ -12,20 +12,24 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ + +/* $Id$ */ + //_________________________________________________________________________ // An analysis task to check the HMPID data in simulated data // //*-- Annalisa Mastroserio ////////////////////////////////////////////////////////////////////////////// +#include #include +#include +#include #include #include -#include -#include #include +#include #include -#include #include "AliHMPIDQATask.h" #include "AliESD.h" diff --git a/ESDCheck/AliMUONQATask.cxx b/ESDCheck/AliMUONQATask.cxx index c4e3a182ee7..4f4a20e81fa 100644 --- a/ESDCheck/AliMUONQATask.cxx +++ b/ESDCheck/AliMUONQATask.cxx @@ -12,16 +12,20 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ + +/* $Id$ */ + // An analysis task to check the MUON data in simulated data // //*-- Ivana Hrivnacova ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// +#include #include #include #include -#include +#include #include "AliMUONQATask.h" #include "AliESD.h" diff --git a/ESDCheck/AliPHOSQATask.cxx b/ESDCheck/AliPHOSQATask.cxx index 72d68d71550..da4238699e8 100644 --- a/ESDCheck/AliPHOSQATask.cxx +++ b/ESDCheck/AliPHOSQATask.cxx @@ -12,21 +12,25 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ + +/* $Id$ */ + //_________________________________________________________________________ // An analysis task to check the PHOS photon data in simulated data // //*-- Yves Schutz ////////////////////////////////////////////////////////////////////////////// +#include #include +#include #include #include #include -#include -#include #include +#include +#include #include -#include #include "AliPHOSQATask.h" #include "AliESD.h" diff --git a/ESDCheck/AliPMDQATask.cxx b/ESDCheck/AliPMDQATask.cxx index f1d2554bf11..d36a1d54f7a 100644 --- a/ESDCheck/AliPMDQATask.cxx +++ b/ESDCheck/AliPMDQATask.cxx @@ -13,19 +13,23 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ + +/* $Id$ */ + //_________________________________________________________________________ // An analysis task to check the PMD data in simulated data // //*-- Yves Schutz ////////////////////////////////////////////////////////////////////////////// +#include #include +#include #include #include -#include #include +#include #include -#include #include "AliPMDQATask.h" #include "AliPMDUtility.h" diff --git a/ESDCheck/AliT0QATask.cxx b/ESDCheck/AliT0QATask.cxx index 972d6988def..63f018b9c54 100644 --- a/ESDCheck/AliT0QATask.cxx +++ b/ESDCheck/AliT0QATask.cxx @@ -12,17 +12,21 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ + +/* $Id$ */ + //______________________________________________________________________________ // An analysis task to check the T0 data in simulated data // //*-- Alla Maevskaya ////////////////////////////////////////////////////////////////////////////// +#include #include +#include #include -#include #include -#include +#include #include "AliT0QATask.h" #include "AliESD.h" diff --git a/ESDCheck/AliTRDQATask.cxx b/ESDCheck/AliTRDQATask.cxx index 8799ee2f622..38f9e537557 100644 --- a/ESDCheck/AliTRDQATask.cxx +++ b/ESDCheck/AliTRDQATask.cxx @@ -12,6 +12,9 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ + +/* $Id$ */ + //_________________________________________________________________________ // An analysis task to check the TRD data in simulated data // @@ -27,16 +30,16 @@ // trdz = kTRDout && !kTRDref // -#include "AliTRDQATask.h" - -#include "TChain.h" -#include "TH1D.h" -#include "TH2D.h" -#include "TFile.h" -#include "TStyle.h" -#include "TGaxis.h" -#include "TCanvas.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include "AliTRDQATask.h" #include "AliESD.h" #include "AliLog.h" diff --git a/EVE/Alieve/TPCLoader.h b/EVE/Alieve/TPCLoader.h index 5be0980726f..1b029335f9b 100644 --- a/EVE/Alieve/TPCLoader.h +++ b/EVE/Alieve/TPCLoader.h @@ -4,6 +4,7 @@ #define ALIEVE_TPCLoader_H #include +#include class AliRawReaderRoot; diff --git a/EVE/Alieve/TRDModuleImp.h b/EVE/Alieve/TRDModuleImp.h index 47c0159a623..24072e2849d 100644 --- a/EVE/Alieve/TRDModuleImp.h +++ b/EVE/Alieve/TRDModuleImp.h @@ -10,6 +10,8 @@ // by A.Bercuci (A.Bercuci@gsi.de) Fri Oct 27 2006 ///////////////////////////////////////////////////////////////////////// +#include + #ifndef REVE_RenderElement_H #include #endif diff --git a/EVE/Reve/PODs.cxx b/EVE/Reve/PODs.cxx index 1efe8720f29..02f4cc895c9 100644 --- a/EVE/Reve/PODs.cxx +++ b/EVE/Reve/PODs.cxx @@ -1,5 +1,7 @@ // $Header$ +#include + #include "PODs.h" using namespace Reve; diff --git a/EVE/Reve/RGBAPalette.cxx b/EVE/Reve/RGBAPalette.cxx index 8f1ac657bc7..e54d0b5271b 100644 --- a/EVE/Reve/RGBAPalette.cxx +++ b/EVE/Reve/RGBAPalette.cxx @@ -4,6 +4,7 @@ #include #include +#include using namespace Reve; diff --git a/EVE/Reve/RGTopFrame.h b/EVE/Reve/RGTopFrame.h index d341064776e..c79fea6afbc 100644 --- a/EVE/Reve/RGTopFrame.h +++ b/EVE/Reve/RGTopFrame.h @@ -3,9 +3,12 @@ #ifndef REVE_RGTopFrame_H #define REVE_RGTopFrame_H +#include #include -#include #include +#include +#include +#include #include diff --git a/EVE/Reve/RGValuators.cxx b/EVE/Reve/RGValuators.cxx index 30088247411..7471e9c728e 100644 --- a/EVE/Reve/RGValuators.cxx +++ b/EVE/Reve/RGValuators.cxx @@ -2,6 +2,7 @@ #include "RGValuators.h" +#include #include #include #include diff --git a/EVE/Reve/Reve.cxx b/EVE/Reve/Reve.cxx index 5c10f06a383..9889f4ae752 100644 --- a/EVE/Reve/Reve.cxx +++ b/EVE/Reve/Reve.cxx @@ -6,6 +6,7 @@ #include #include #include +#include #include #include diff --git a/EVE/Reve/ZTrans.cxx b/EVE/Reve/ZTrans.cxx index 409b0f68a5d..f3304abdf46 100644 --- a/EVE/Reve/ZTrans.cxx +++ b/EVE/Reve/ZTrans.cxx @@ -33,6 +33,7 @@ #include "ZTrans.h" #include "Reve.h" #include +#include #include diff --git a/LHC/AliLhcBeam.cxx b/LHC/AliLhcBeam.cxx index d4c44f745f5..27fa462d341 100644 --- a/LHC/AliLhcBeam.cxx +++ b/LHC/AliLhcBeam.cxx @@ -23,13 +23,15 @@ // andreas.morsch@cern.ch // -#include "AliLhcBeam.h" -#include "AliLHC.h" -#include #include #include +#include +#include #include +#include "AliLhcBeam.h" +#include "AliLHC.h" + ClassImp(AliLhcBeam) AliLhcBeam::AliLhcBeam(AliLHC* lhc): diff --git a/LHC/AliLhcProcessIBS.cxx b/LHC/AliLhcProcessIBS.cxx index fbb0994bd0f..4ad295aaa17 100644 --- a/LHC/AliLhcProcessIBS.cxx +++ b/LHC/AliLhcProcessIBS.cxx @@ -23,17 +23,18 @@ // andreas.morsch@cern.ch // +#include +#include +#include +#include +#include +#include + #include "AliLhcProcessIBS.h" #include "AliLHC.h" #include "AliLhcIRegion.h" #include "AliLhcBeam.h" -#include -#include -#include -#include -#include - ClassImp(AliLhcProcessIBS) Double_t func(Double_t *x, Double_t *par); -- 2.39.3