00001 #ifndef SCTDATADISPLAY_DISPLAYINFO_H 00002 #define SCTDATADISPLAY_DISPLAYINFO_H 00003 00004 #include <vector> 00005 00006 using std::vector; 00007 00008 namespace SctDataDisplay { 00009 00014 class DisplayInfo { 00015 public: 00016 DisplayInfo() : occupancyHistograms(false), projections(true) {} 00017 vector<unsigned int> displayChips; 00018 vector<unsigned int> displayChannels; 00019 bool occupancyHistograms; 00020 bool projections; 00021 virtual ~DisplayInfo(){} 00022 }; 00023 } 00024 00025 #endif //SCTDATADISPLAY_DISPLAYINFO_H