Hall-D Software  alpha
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CERE_init.cc
Go to the documentation of this file.
1 /*
2  * CERE_init.cc
3  *
4  * Created on: Oct 3, 2012
5  * Author: yqiang
6  *
7  * Modified on:
8  * Oct 9 2012, Yi Qiang, add general Cerenkov hit
9  */
10 
11 #include <JANA/JEventLoop.h>
12 using namespace jana;
13 
14 #include "DCereHit.h"
15 
16 jerror_t CERE_init(JEventLoop *loop) {
17  /// Create and register Cherenkov data factories
18  loop->AddFactory(new JFactory<DCereHit>());
19 
20  return NOERROR;
21 }
22 
jerror_t CERE_init(JEventLoop *loop)
Definition: CERE_init.cc:16