#include "HornModule.h"#include "StripHist.h"#include <JobControl/JobCModuleRegistry.h>#include <JobControl/JobCResult.h>#include <MessageService/MsgService.h>#include <RawData/RawRecord.h>#include <RawData/RawBeamMonBlock.h>#include <RawData/RawBeamData.h>#include <DataUtil/GetRecords.h>#include <Conventions/Munits.h>#include <TGraph.h>#include <TCanvas.h>#include <TH1F.h>#include <TStyle.h>#include <vector>Go to the source code of this file.
Typedefs | |
| typedef std::map< std::string, StripHist * > | StripHistMap |
Functions | |
| CVSID ("$Id: HornModule.cxx,v 1.5 2005/06/01 17:01:47 thosieck Exp $") | |
| JOBMODULE (HornModule,"MonHorn","Horn related histogramming for Monitoring") | |
| const char * | get_name (int ind) |
|
|
Definition at line 64 of file HornModule.cxx. |
|
||||||||||||
|
|
|
|
Definition at line 31 of file HornModule.cxx. Referenced by HornModule::Fill(), and HornModule::HornModule(). 00032 {
00033 const char* names[] = {
00034 "Total Horn Current",
00035 "Quadrant 1 Horn Current",
00036 "Quadrant 2 Horn Current",
00037 "Quadrant 3 Horn Current",
00038 "Quadrant 4 Horn Current",
00039 0
00040 };
00041 if (ind < 0 || ind > 4) return 0;
00042 return names[ind];
00043 }
|
|
||||||||||||||||
|
|
1.3.9.1