BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
CDFootPrint.cxx File Reference
#include <iostream>
#include <stdlib.h>
#include "BesDChain/CDFootPrint.h"

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const CDFootPrint &obj)

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream & os,
const CDFootPrint & obj )

Definition at line 88 of file CDFootPrint.cxx.

88 {
89 os << "0x" << std::hex;
90 for ( int i = obj.m_size - 1; i >= 0; i-- ) { os << obj.m_array[i]; }
91 os << std::dec;
92
93 return os;
94}