Compounds | |
| class | mMuiBLTEmulator |
| MUID/MUI Blue-Logic Trigger emulator. More... | |
| class | mMuiClusterFinder |
| Groups raw MuID hits into clusters. More... | |
| class | mMuiEvalFramework |
| Compares old MUI framework with new MUIOO framework. More... | |
| class | mMuiFastRoadFinder |
| Class to construct roads from TMuiHitO's a la the LL1 part in L2TestFramework. More... | |
| class | mMuiFindRoad |
| Associate clusters into roads. More... | |
| class | mMuiRawUnpack |
| Parses the MuID DCM packet data, and fills the TMuiRawMapO table for those channels that have signals. More... | |
| class | mMuiResponse |
| Reads TMuiMCHit and TMutMCTrk and generates TMuiHit objects. More... | |
| class | mMuiRoadAssoc |
| Take our track and a list of candidate roads, and pick the road closest to the track. More... | |
| class | mMuiRoadFinder1 |
| Class to construct roads from or TMuiClustersO. More... | |
| class | mMuiSlowSim |
| MUID slow simulator module. More... | |
| class | mMuiTriggerEmulator |
| MUID/MUIOO Trigger Emulator. More... | |
Functions | |
| mMuiBLTEmulator () | |
| mMuiFindRoad () | |
| mMuiResponse () | |
| mMuiRoadAssoc () | |
| mMuiSlowSim () | |
| mMuiTriggerEmulator () | |
|
|
Definition at line 52 of file mMuiBLTEmulator.cxx. References mMuiBLTEmulator::_non_used_plane, and mMuiBLTEmulator::init_done.
00052 : _timer("mMuiBLTEmulator")
00053 {
00054 name = "mMuiBLTEmulator";
00055 MUTOO::TRACE("initializing module " + std::string(name.getString()));
00056 init_done = 0;
00057 _non_used_plane = 4;
00058 }
|
|
|
Constructor Definition at line 31 of file mMuiFindRoad.cxx. References MUIOO::TRACE.
00031 :
00032 _timer( PHTimeServer::get()->insert_new( "mMuiFindRoad" ) )
00033 {
00034 name = "mMuiFindRoad";
00035 MUIOO::TRACE("initializing module " + std::string(name.getString()));
00036 }
|
|
|
Definition at line 38 of file mMuiResponse.cxx. References MUIOO::TRACE.
00038 :
00039 _rng(0),
00040 _timer( PHTimeServer::get()->insert_new( "mMuiResponse" ) )
00041 {
00042 name = "mMuiResponse";
00043 MUIOO::TRACE("initializing module " + std::string(name.getString()));
00044 }
|
|
|
Definition at line 35 of file mMuiRoadAssoc.cxx.
00035 : _timer("mMuiRoadAssoc")
00036 {
00037 name = "mMuiRoadAssoc";
00038 MUTOO::TRACE("initializing module " + std::string(name.getString()));
00039 }
|
|
|
Definition at line 47 of file mMuiSlowSim.cxx.
00047 :
00048 _timer( PHTimeServer::get()->insert_new("mMuiSlowSim") )
00049 {
00050 name = "mMuiSlowSim";
00051 MUTOO::TRACE("initializing module " + std::string(name.getString()));
00052 }
|
|
|
Definition at line 32 of file mMuiTriggerEmulator.cxx. References mMuiTriggerEmulator::_deep_mask, and mMuiTriggerEmulator::_shallow_mask.
00032 : _timer("mMuiTriggerEmulator")
00033 {
00034 name = "mMuiTriggerEmulator";
00035 MUTOO::TRACE("initializing module " + std::string(name.getString()));
00036
00037 for(int i=0; i<8;++i) _deep_mask.set(i);
00038 for(int i=0; i<6;++i) _shallow_mask.set(i);
00039 }
|