Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MinimumBiasInfo.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file MinimumBiasInfo.h
1 #ifndef TRIGGER_MINIMUMBIASINFO_H
2 #define TRIGGER_MINIMUMBIASINFO_H
3 
4 #include <phool/PHObject.h>
5 
6 class MinimumBiasInfo : public PHObject
7 {
8  public:
9  ~MinimumBiasInfo() override{};
10 
11  void identify(std::ostream &os = std::cout) const override { os << "MinimumBiasInfo base class" << std::endl; };
12  void Reset() override {}
13  int isValid() const override { return 0; }
14  virtual void setIsAuAuMinimumBias(bool) { return; }
15  virtual bool isAuAuMinimumBias() const { return false; }
16 
17  protected:
19 
20  private:
22 };
23 
24 #endif // TRIGGER_MINIMUMBIASINFO_H