CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
edm::TRandomAdaptor Class Reference

#include <TRandomAdaptor.h>

Inheritance diagram for edm::TRandomAdaptor:

Public Types

typedef value_ptr< TRandom3 > TRandom3Ptr
 

Public Member Functions

std::string beginTag ()
 
double flat ()
 
void flatArray (int const size, double *vect)
 
virtual std::istream & get (std::istream &is)
 
bool get (std::vector< unsigned long > const &v)
 
TRandom3 * getRootEngine ()
 
virtual std::istream & getState (std::istream &is)
 
bool getState (std::vector< unsigned long > const &v)
 
std::string name () const
 
 operator float ()
 
 operator unsigned int ()
 
virtual std::ostream & put (std::ostream &os) const
 
std::vector< unsigned long > put () const
 
void restoreStatus (char const filename[]="TRandom.conf")
 
void saveStatus (char const filename[]="TRandom.conf") const
 
void setSeed (long seed, int)
 
void setSeeds (long const *seeds, int)
 
void showStatus () const
 
 TRandomAdaptor ()
 
 TRandomAdaptor (long seed)
 
 TRandomAdaptor (int rowIndex, int colIndex)
 
 TRandomAdaptor (std::istream &is)
 
virtual ~TRandomAdaptor ()
 

Static Public Member Functions

static std::string engineName ()
 

Private Member Functions

void Grumble (std::string const &errortext) const
 

Private Attributes

TRandom3Ptr trand_
 

Detailed Description

Definition at line 13 of file TRandomAdaptor.h.

Member Typedef Documentation

Definition at line 16 of file TRandomAdaptor.h.

Constructor & Destructor Documentation

edm::TRandomAdaptor::TRandomAdaptor ( )

Definition at line 17 of file TRandomAdaptor.cc.

References trand_.

17  : trand_(new TRandom3()) {
18  theSeed = trand_->GetSeed();
19 }
edm::TRandomAdaptor::TRandomAdaptor ( long  seed)

Definition at line 20 of file TRandomAdaptor.cc.

References trand_.

20  : trand_(new TRandom3(seed)) {
21  theSeed = trand_->GetSeed();
22 }
edm::TRandomAdaptor::TRandomAdaptor ( int  rowIndex,
int  colIndex 
)

Definition at line 23 of file TRandomAdaptor.cc.

References trand_.

23  : trand_(new TRandom3(rowIndex*colIndex-1)) {
24  theSeed = trand_->GetSeed();
25 }
edm::TRandomAdaptor::TRandomAdaptor ( std::istream &  is)

Definition at line 27 of file TRandomAdaptor.cc.

References Grumble(), and AlCaHLTBitMon_QueryRunRegistry::string.

27  {
28  Grumble(std::string("Cannot instantiate a TRandom engine from an istream"));
29 }
void Grumble(std::string const &errortext) const
edm::TRandomAdaptor::~TRandomAdaptor ( )
virtual

Definition at line 31 of file TRandomAdaptor.cc.

31  {
32 }

Member Function Documentation

std::string edm::TRandomAdaptor::beginTag ( )
inline

Definition at line 55 of file TRandomAdaptor.h.

References AlCaHLTBitMon_QueryRunRegistry::string, and trand_.

55 { return std::string(trand_->GetName())+std::string("-begin"); }
static std::string edm::TRandomAdaptor::engineName ( )
inlinestatic

Definition at line 60 of file TRandomAdaptor.h.

References AlCaHLTBitMon_QueryRunRegistry::string.

60 { return std::string("TRandomAdaptor"); }
double edm::TRandomAdaptor::flat ( void  )
inline

Definition at line 26 of file TRandomAdaptor.h.

References trand_.

26 { return trand_->Rndm(); }
void edm::TRandomAdaptor::flatArray ( int const  size,
double *  vect 
)
inline

Definition at line 29 of file TRandomAdaptor.h.

References trand_.

29 { trand_->RndmArray(size,vect); }
tuple size
Write out results.
std::istream & edm::TRandomAdaptor::get ( std::istream &  is)
virtual
bool edm::TRandomAdaptor::get ( std::vector< unsigned long > const &  v)

Definition at line 98 of file TRandomAdaptor.cc.

References i, and trand_.

Referenced by Options.Options::__getitem__(), betterConfigParser.BetterConfigParser::__updateDict(), betterConfigParser.BetterConfigParser::getCompares(), betterConfigParser.BetterConfigParser::getGeneral(), and betterConfigParser.BetterConfigParser::getResultingSection().

98  {
99  if(v.empty()) return false;
100  if(v[0] != CLHEP::engineIDulong<TRandomAdaptor>()) return false;
101  int32_t numItems = v.size()-1;
102 
103  int32_t itemSize = sizeof(uint32_t);
104  TBufferFile buffer(TBuffer::kRead, numItems * itemSize + 1024);
105  char* bufferPtr = buffer.Buffer();
106  for(int32_t i = 0; i < numItems; ++i) {
107 
108  *reinterpret_cast<uint32_t*>(bufferPtr + i * itemSize) = static_cast<uint32_t>(v[i+1] & 0xffffffff);
109  }
110 
111  // Note that this will fail if the TRandom3 version (specifically the TStreamerInfo)
112  // has changed between the time the state was saved and the time the following call
113  // is made. Because we are manually calling the Streamer function, the original
114  // TStreamerInfo is not saved anywhere. Normally ROOT saves the TStreamerInfo
115  // automatically.
116  trand_->Streamer(buffer);
117 
118  return true;
119 }
int i
Definition: DBlmapReader.cc:9
TRandom3* edm::TRandomAdaptor::getRootEngine ( )
inline

Definition at line 67 of file TRandomAdaptor.h.

References trand_.

67 { return trand_.operator->(); }
std::istream & edm::TRandomAdaptor::getState ( std::istream &  is)
virtual

Definition at line 93 of file TRandomAdaptor.cc.

References Grumble(), and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by get().

93  {
94  Grumble(std::string("getState(std::istream) not available for TRandom engines"));
95  return is;
96 }
void Grumble(std::string const &errortext) const
bool edm::TRandomAdaptor::getState ( std::vector< unsigned long > const &  v)
inline

Definition at line 64 of file TRandomAdaptor.h.

References findQualityFiles::v.

64 { return get(v); }
void edm::TRandomAdaptor::Grumble ( std::string const &  errortext) const
private

Definition at line 121 of file TRandomAdaptor.cc.

References edm::errors::UnimplementedFeature.

Referenced by get(), getState(), put(), and TRandomAdaptor().

121  {
122 
123 // Throw an edm::Exception for unimplemented functions
124  std::ostringstream sstr;
125  sstr << "Unimplemented Feature: " << errortext << '\n';
127  throw except;
128 }
std::string edm::TRandomAdaptor::name ( void  ) const
inline
edm::TRandomAdaptor::operator float ( )
inline

Definition at line 48 of file TRandomAdaptor.h.

References trand_.

48 { return (float)(trand_->Rndm()); }
edm::TRandomAdaptor::operator unsigned int ( )
inline

Definition at line 51 of file TRandomAdaptor.h.

References trand_.

51 { return (unsigned int)((trand_->Rndm())*exponent_bit_32()); }
std::ostream & edm::TRandomAdaptor::put ( std::ostream &  os) const
virtual

Definition at line 34 of file TRandomAdaptor.cc.

References Grumble(), and AlCaHLTBitMon_QueryRunRegistry::string.

34  {
35  Grumble(std::string("put(std::ostream) not available for TRandom engines"));
36  return os;
37 }
void Grumble(std::string const &errortext) const
std::vector< unsigned long > edm::TRandomAdaptor::put ( ) const

Definition at line 39 of file TRandomAdaptor.cc.

References i, trand_, and findQualityFiles::v.

39  {
40  std::vector<unsigned long> v;
41 
42  int32_t itemSize = sizeof(uint32_t);
43  TBufferFile buffer(TBuffer::kWrite, 2048 * itemSize);
44  trand_->Streamer(buffer);
45  buffer.SetReadMode();
46  char* bufferPtr = buffer.Buffer();
47  int32_t numItems = (buffer.Length() + itemSize - 1) / itemSize;
48  v.reserve(numItems + 1);
49  v.push_back(CLHEP::engineIDulong<TRandomAdaptor>());
50  for(int i = 0; i < numItems; ++i) {
51 
52  // Here we do some ugly manipulations to the data to match the format
53  // of the output of the CLHEP put function (the whole point of this adaptor
54  // is to make TRandom3 work through the CLHEP interface as if it were a
55  // a CLHEP engine ...). In CLHEP, the vector returned by put contains
56  // unsigned long's, but these always contain only 32 bits of information.
57  // In the case of a 64 bit build the top 32 bits is only padding (all 0's).
58 
59  // Get the next 32 bits of data from the buffer
60  uint32_t value32 = *reinterpret_cast<uint32_t*>(bufferPtr + i * itemSize);
61 
62  if(i == numItems - 1) {
63  int nBytes = buffer.Length() % itemSize;
64  if(nBytes == 1) value32 &= 0xffu;
65  else if(nBytes == 2) value32 &= 0xffffu;
66  else if(nBytes == 3) value32 &= 0xffffffu;
67  }
68 
69  // Push it into the vector in an unsigned long which may be 32 or 64 bits
70  v.push_back(static_cast<unsigned long>(value32));
71  }
72  return v;
73 }
int i
Definition: DBlmapReader.cc:9
void edm::TRandomAdaptor::restoreStatus ( char const  filename[] = "TRandom.conf")
inline

Definition at line 42 of file TRandomAdaptor.h.

References lut2db_cfg::filename, and trand_.

42 { trand_->ReadRandom(filename); }
tuple filename
Definition: lut2db_cfg.py:20
void edm::TRandomAdaptor::saveStatus ( char const  filename[] = "TRandom.conf") const
inline

Definition at line 39 of file TRandomAdaptor.h.

References lut2db_cfg::filename, and trand_.

39 { trand_->WriteRandom(filename); }
tuple filename
Definition: lut2db_cfg.py:20
void edm::TRandomAdaptor::setSeed ( long  seed,
int   
)

Definition at line 75 of file TRandomAdaptor.cc.

References trand_.

75  {
76  trand_->SetSeed(seed);
77  theSeed = trand_->GetSeed();
78 }
void edm::TRandomAdaptor::setSeeds ( long const *  seeds,
int   
)

Definition at line 82 of file TRandomAdaptor.cc.

References trand_.

82  {
83  trand_->SetSeed(seeds[0]);
84  theSeed = trand_->GetSeed();
85 }
void edm::TRandomAdaptor::showStatus ( ) const
inline

Definition at line 45 of file TRandomAdaptor.h.

References trand_.

45 { trand_->Dump(); }

Member Data Documentation

TRandom3Ptr edm::TRandomAdaptor::trand_
private