DUNEOpDetResponseInterface.h
Go to the documentation of this file.
1 // \file DUNEOpDetResponseInterface.h
2 // \brief service containing information about the response of optical detectors for dune specific uses.
3 //
4 // \author: JStock (jason.stock@mines.sdsmt.edu)
5 // Based on OpDetResponseInterface by AHimmel (ahimmel@fnal.gov).
6 
7 #ifndef DUNE_OPDET_RESPONSE_INTERFACE_H
8 #define DUNE_OPDET_RESPONSE_INTERFACE_H
9 
12 
13 namespace opdet
14 {
16  public:
17  bool detectedLiteWithChannel(int OpDet, int &newOpChannel, int& hardwareChannel) const
18  {
19  return doDetectedLiteWithChannel( OpDet, newOpChannel, hardwareChannel);
20  }
21  private:
22  bool doDetectedLiteWithChannel(int OpDet, int &newOpChannel, int& hardwareChannel) const;
23  };
24 }
25 
27 
28 #endif //DUNE_OPDET_RESPONSE_INTERFACE_H
bool detectedLiteWithChannel(int OpDet, int &newOpChannel, int &hardwareChannel) const
bool doDetectedLiteWithChannel(int OpDet, int &newOpChannel, int &hardwareChannel) const
#define DECLARE_ART_SERVICE_INTERFACE(svc, scope)