Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ClientHistoList.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file ClientHistoList.h
1 #ifndef CLIENTHISTOLIST_H__
2 #define CLIENTHISTOLIST_H__
3 
4 #include <iostream>
5 #include <string>
6 
7 class TH1;
8 
10 {
11  public:
13  explicit ClientHistoList(const std::string &subsys);
14 
15  virtual ~ClientHistoList();
16 
17  TH1 *Histo() const;
18  void Histo(TH1 *Histo);
19  const std::string ServerHost() const;
20  void ServerHost(const std::string &ServerHost);
21  const std::string SubSystem() const;
22  void SubSystem(const std::string &SubSystem);
23  void ServerPort(const int port);
24  int ServerPort() const;
25  void identify(std::ostream &os = std::cout) const;
26 
27  protected:
28  TH1 *histo;
32 };
33 
34 #endif /* __CLIENTHISTOLIST_H__ */