BOSS 7.0.1
BESIII Offline Software System
Loading...
Searching...
No Matches
CDFootPrint.cxx File Reference
#include <stdlib.h>
#include <iostream>
#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 89 of file CDFootPrint.cxx.

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