void FEMC_Clusters(int verbosity = 0) { gSystem->Load("libfun4all.so"); gSystem->Load("libg4detectors.so"); Fun4AllServer *se = Fun4AllServer::instance(); RawClusterBuilderFwd* ClusterBuilder = new RawClusterBuilderFwd("FEMCRawClusterBuilderFwd"); ClusterBuilder->Detector("FEMC"); ClusterBuilder->Verbosity(verbosity); se->registerSubsystem( ClusterBuilder ); return; }
void FHCAL_Clusters(int verbosity = 0) { gSystem->Load("libfun4all.so"); gSystem->Load("libg4detectors.so"); Fun4AllServer *se = Fun4AllServer::instance(); RawClusterBuilderFwd* ClusterBuilder = new RawClusterBuilderFwd("FHCALRawClusterBuilderFwd"); ClusterBuilder->Detector("FHCAL"); ClusterBuilder->Verbosity(verbosity); ClusterBuilder->set_threshold_energy(0.100); se->registerSubsystem( ClusterBuilder ); return; }