#include <TObject.h>#include "RawData/RawRecord.h"#include "RawData/RawDataBlock.h"#include "MinosObjectMap/MomNavigator.h"#include <vector>#include <iostream>Go to the source code of this file.
Namespaces | |
| namespace | DataUtil |
Functions | |
| template<class BlockType> | |
| std::vector< const BlockType * > | GetRawBlocks (const MomNavigator *mom) |
| Pull RawData blocks out of Mom. | |
| template<class BlockType> | |
| const BlockType * | GetRawBlock (const MomNavigator *mom) |
|
||||||||||
|
Definition at line 65 of file GetRawBlock.h. 00066 {
00067 std::vector<const BlockType*> v = GetRawBlocks<BlockType>(mom);
00068 if(v.size()>0) return v[0];
00069 else return NULL;
00070 }
|
1.3.9.1