1 /**************************************************************************
2 * Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
19 /// @file AliHLTMUONAgent.cxx
20 /// @author Artur Szostak <artursz@iafrica.com>
22 /// @brief Implementation of the AliHLTMUONAgent class.
25 #include "AliHLTMUONAgent.h"
26 #include "AliHLTMUONRecHitsSource.h"
27 #include "AliHLTMUONTriggerRecordsSource.h"
28 #include "AliHLTMUONRootifierComponent.h"
29 #include "AliHLTMUONHitReconstructorComponent.h"
30 #include "AliHLTMUONTriggerReconstructorComponent.h"
31 #include "AliHLTMUONMansoTrackerFSMComponent.h"
32 #include "AliHLTMUONEmptyEventFilterComponent.h"
33 #include "AliRunLoader.h"
35 // The single global instance of the dimuon HLT agent.
36 AliHLTMUONAgent AliHLTMUONAgent::fgkInstance;
38 ClassImp(AliHLTMUONAgent);
41 AliHLTMUONAgent::AliHLTMUONAgent() : AliHLTModuleAgent("MUON")
44 /// Default constructor.
48 AliHLTMUONAgent::~AliHLTMUONAgent()
51 /// Default destructor.
55 const char* AliHLTMUONAgent::GetReconstructionChains(AliRawReader* /*rawReader*/,
56 AliRunLoader* /*runloader*/
60 /// Inherited from AliHLTModuleAgent.
61 /// Returns the top processing chain configurations for local event
63 /// @param rawReader [in] AliRoot rawreader instance.
64 /// @param runloader [in] AliRoot runloader
65 /// @return string containing the top configurations separated by blanks.
68 return "dhlt-simhits";
71 const char* AliHLTMUONAgent::GetRequiredComponentLibraries() const
74 /// Inherited from AliHLTModuleAgent.
75 /// Returns a list of libraries which the configurations registered by
76 /// this module agent depend on.
77 /// @return list of component libraries as a blank-separated string.
80 return "libGeom.so libMinuit.so libEG.so libTreePlayer.so libXMLIO.so "
81 "libVMC.so libESD.so libSTEER.so libGui.so libMUONraw.so libMUONgeometry.so "
82 "libMUONmapping.so libMUONcalib.so libMUONbase.so libMUONsim.so libAliHLTMUON.so";
86 int AliHLTMUONAgent::CreateConfigurations(
87 AliHLTConfigurationHandler* handler,
88 AliRawReader* /*rawReader*/,
89 AliRunLoader* /*runloader*/
93 /// Register all processing configurations belonging to the dimuon HLT
94 /// library with the AliHLTConfigurationHandler.
95 /// @param handler the configuration handler
96 /// @param rawReader [in] AliRoot rawreader instance.
97 /// @param runloader AliRoot runloader
98 /// @return Zero on success and error code if failed.
101 if (handler == NULL) return 0;
102 handler->CreateConfiguration("dhlt-simhits", "DimuoRecHitsSource", NULL, "-simdata");
107 int AliHLTMUONAgent::RegisterComponents(AliHLTComponentHandler* pHandler) const
110 /// Registers all available components of this module.
111 /// @param pHandler [in] instance of the component handler.
114 if (pHandler == NULL) return -EINVAL;
115 pHandler->AddComponent(new AliHLTMUONRecHitsSource);
116 pHandler->AddComponent(new AliHLTMUONTriggerRecordsSource);
117 pHandler->AddComponent(new AliHLTMUONRootifierComponent);
118 pHandler->AddComponent(new AliHLTMUONHitReconstructorComponent);
119 pHandler->AddComponent(new AliHLTMUONTriggerReconstructorComponent);
120 pHandler->AddComponent(new AliHLTMUONMansoTrackerFSMComponent);
121 pHandler->AddComponent(new AliHLTMUONEmptyEventFilterComponent);