ATLAS Offline Software
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | Private Attributes | List of all members
TrigSpacePointCounts_p1_old_cnv Class Reference

#include <TrigSpacePointCounts_p1_old_cnv.h>

Inheritance diagram for TrigSpacePointCounts_p1_old_cnv:
Collaboration diagram for TrigSpacePointCounts_p1_old_cnv:

Public Member Functions

virtual void Convert (TrigSpacePointCounts_p1 *newobj, const TrigSpacePointCounts_p1_old *oldobj)
 Do the conversion. More...
 
virtual void ConvertVoid (void *transobj, const void *persobj)
 Do the conversion. More...
 
TClass * GetTransClass ()
 Return the transient class, to which we're converting. More...
 
TClass * GetPersClass ()
 Return the persistent class, from which we're converting. More...
 
int GetCheckSum () const
 Return the checksum of the class from which we're converting. More...
 
virtual void * NewPersObj ()
 Create a new instance of the persistent class. More...
 
virtual void DeletePersObj (void *persobj)
 Destroy an instance of the persistent class. More...
 
virtual void ReadBuffer (TBuffer &b, void *obj, Version_t version, UInt_t R__S, UInt_t R__c)
 Read object in non-split mode. More...
 

Static Public Member Functions

static TClass * ToClass (const std::string &name)
 Helper to convert a class name to a Root class pointer. More...
 
static TClass * ToClass (const std::type_info &id)
 Helper to convert a type_info to a Root class pointer. More...
 

Protected Member Functions

void SetCtorInfo (UInt_t checksum, TClass *trans_cls, TClass *pers_cls)
 Set the parameters that would normally be passed to the constructor. More...
 

Protected Attributes

void * fPersObj
 The temporary persistent object instance, used for conversions (in non-split mode). More...
 

Private Member Functions

void CheckStreamInfos ()
 Helper to allow for automatic schema evolution for persistent classes. More...
 
void CheckClasses ()
 Helper to check that the classes have been defined properly. More...
 

Private Attributes

TClass * fTransClass
 The declared transient class. More...
 
TClass * fPersClass
 The declared persistent class. More...
 
UInt_t fCheckSum
 The declared checksum. More...
 
int fOldLast
 Used by CheckStreamInfos: the length of the streamerinfo list that we saw on the last CheckStreamInfos call. More...
 

Detailed Description

Definition at line 17 of file TrigSpacePointCounts_p1_old_cnv.h.

Member Function Documentation

◆ CheckClasses()

void TVirtualConverter::CheckClasses ( )
privateinherited

Helper to check that the classes have been defined properly.

Check that the class pointers got defined.

Definition at line 188 of file TVirtualConverter.cxx.

189 {
190  if (fTransClass == nullptr) {
191  if (fPersClass == nullptr)
192  Error ("TVirtualConverter",
193  "Both transient and persistent classes are null.");
194  else
195  Error ("TVirtualConverter",
196  "Transient class is null for persistent class `%s'",
197  fPersClass->GetName());
198  }
199  else if (fPersClass == nullptr)
200  Error ("TVirtualConverter",
201  "Persistent class is null for transient class `%s'",
202  fTransClass->GetName());
203 }

◆ CheckStreamInfos()

void TVirtualConverter::CheckStreamInfos ( )
privateinherited

Helper to allow for automatic schema evolution for persistent classes.

Automatic schema evolution doesn't work for persistent classes ‘out-of-the-box’ because we're reading the ‘persistent class’, but the relevant StreamerInfo stored in the file will have the name of the ‘transient class’.

This gets called each time we try to read an object (in non-split mode).

Definition at line 368 of file TVirtualConverter.cxx.

369 {
370  // First check to see if the list of TStreamerInfo's for the transient
371  // class has changed since the last time we were called. If not,
372  // then don't do anything.
373  const TObjArray* trans_sis = fTransClass->GetStreamerInfos();
374  if (trans_sis->GetLast() != fOldLast) {
375  // There was a change. Compare the TStreamerInfo list for the
376  // persistent class and the transient class. Look for entries
377  // where the transient class has a TStreamerInfo but the persistent
378  // class does not.
379  //
380  // Note: don't do this for `version' -1.
381  // That should always be built from the internal dictionary.
382  // (Otherwise, root can crash.)
383  const TObjArray* pers_sis = fPersClass->GetStreamerInfos();
384  assert (trans_sis->LowerBound() == pers_sis->LowerBound());
385  for (Int_t v = trans_sis->LowerBound(); v <= trans_sis->GetLast(); ++v) {
386  if (v != -1 &&
387  trans_sis->At(v) != 0 &&
388  (v > pers_sis->GetLast() || pers_sis->At(v) == 0))
389  {
390  // Ok, at this index, the transient class has a TStreamerInfo
391  // but the persistent class does not. Copy the TStreamerInfo
392  // (changing the class that it applies to to the persistent
393  // class), and add it to the persistent class's list.
394  TStreamerInfo* new_si =(TStreamerInfo*)(trans_sis->At(v)->Clone());
395  new_si->SetClass (fPersClass);
396  fPersClass->RegisterStreamerInfo (new_si);
397  }
398  }
399 
400  // Remember how many entries there were in the list for next time.
401  fOldLast = trans_sis->GetLast();
402  }
403 }

◆ Convert()

void TrigSpacePointCounts_p1_old_cnv::Convert ( TrigSpacePointCounts_p1 transobj,
const TrigSpacePointCounts_p1_old persobj 
)
virtual

Do the conversion.

Parameters
transobjPointer to an instance of the transient class.
persobjPointer to an instance of the persistent class.

An implementation of this must be provided in derived classes. It should initialize the object at transobj from the one at persobj.

Implements TVirtualConverter_T< TrigSpacePointCounts_p1, TrigSpacePointCounts_p1_old >.

Definition at line 10 of file TrigSpacePointCounts_p1_old_cnv.cxx.

12 {
13  newobj->m_pixSPcnt = oldobj->m_pixcnt;
14  newobj->m_sctSPcnt = oldobj->m_sctcnt;
15 
16  newobj->m_pixCL1cnt = 0;
17  newobj->m_pixCL2cnt = 0;
18  newobj->m_pixCLmin3cnt = 0;
19  newobj->m_SPpixBarr_cnt= 0;
20  newobj->m_SPpixECAcnt = 0;
21  newobj->m_SPpixECCcnt = 0;
22 
23  newobj->m_SPsctBarr_cnt= 0;
24  newobj->m_SPsctECAcnt = 0;
25  newobj->m_SPsctECCcnt = 0;
26 }

◆ ConvertVoid()

virtual void TVirtualConverter_T< TrigSpacePointCounts_p1 , TrigSpacePointCounts_p1_old >::ConvertVoid ( void *  transobj,
const void *  persobj 
)
virtualinherited

Do the conversion.

Parameters
transobjPointer to an instance of the transient class.
persobjPointer to an instance of the persistent class.

This implementation simply calls the Convert below with the appropriate casting.

Implements TVirtualConverter.

◆ DeletePersObj()

void TVirtualConverter::DeletePersObj ( void *  persobj)
virtualinherited

Destroy an instance of the persistent class.

Parameters
persobjPointer to the instance to destroy.

The provided implementation of this uses TClass::Destructor, but you can override it if need be.

Definition at line 263 of file TVirtualConverter.cxx.

264 {
265  return fPersClass->Destructor (persobj);
266 }

◆ GetCheckSum()

int TVirtualConverter::GetCheckSum ( ) const
inherited

Return the checksum of the class from which we're converting.

Definition at line 238 of file TVirtualConverter.cxx.

239 {
240  return fCheckSum;
241 }

◆ GetPersClass()

TClass * TVirtualConverter::GetPersClass ( )
inherited

Return the persistent class, from which we're converting.

Definition at line 229 of file TVirtualConverter.cxx.

230 {
231  return fPersClass;
232 }

◆ GetTransClass()

TClass * TVirtualConverter::GetTransClass ( )
inherited

Return the transient class, to which we're converting.

Definition at line 220 of file TVirtualConverter.cxx.

221 {
222  return fTransClass;
223 }

◆ NewPersObj()

void * TVirtualConverter::NewPersObj ( )
virtualinherited

Create a new instance of the persistent class.

The provided implementation of this uses TClass::New, but you can override it if need be.

Definition at line 250 of file TVirtualConverter.cxx.

251 {
252  return fPersClass->New();
253 }

◆ ReadBuffer()

void TVirtualConverter::ReadBuffer ( TBuffer &  b,
void *  obj,
Version_t  version,
UInt_t  R__s,
UInt_t  R__c 
)
virtualinherited

Read object in non-split mode.

Parameters
bThe source of the data.
objThe object into which we're reading. (This will be the transient object.)
versionThe version number of the class.
R__sThe starting position in the buffer.
R__cThe number of bytes for this object in the buffer.

You normally shouldn't have to worry about this, but it's exposed here so that it can be overridden if needed. It's only used when reading in non-split mode.

Definition at line 282 of file TVirtualConverter.cxx.

287 {
288  // Make sure that we've done automatic schema evolution on the
289  // persistent side.
291 
292  // Make an instance of the persistent class, if we haven't done so already.
293  if (fPersObj == nullptr)
294  fPersObj = NewPersObj();
295 
296  // Read in the object, as an instance of the persistent class.
297  fPersClass->ReadBuffer (b, fPersObj, version, R__s, R__c);
298 
299  // Convert to the transient representation.
301 }

◆ SetCtorInfo()

void TVirtualConverter::SetCtorInfo ( UInt_t  checksum,
TClass *  trans_cls,
TClass *  pers_cls 
)
protectedinherited

Set the parameters that would normally be passed to the constructor.

Parameters
checksumThe Root checksum of the persistent class we'll convert.
trans_clsThe transient class to which we will be converting.
pers_clsThe persistent class from which we will be converting.

Intended for use with T_AthenaRootConverter only!

Definition at line 430 of file TVirtualConverter.cxx.

433 {
434  assert (fTransClass == nullptr);
435 
436  fCheckSum = checksum;
437  fTransClass = trans_cls;
438  fPersClass = pers_cls;
439  CheckClasses();
440 }

◆ ToClass() [1/2]

TClass * TVirtualConverter::ToClass ( const std::string &  name)
staticinherited

Helper to convert a class name to a Root class pointer.

Parameters
nameThe name of the class to convert.

Returns nullptr on failure.

Definition at line 310 of file TVirtualConverter.cxx.

311 {
312  return gROOT->GetClass (name.c_str());
313 }

◆ ToClass() [2/2]

TClass * TVirtualConverter::ToClass ( const std::type_info &  id)
staticinherited

Helper to convert a type_info to a Root class pointer.

Parameters
nameThe type_info of the class to convert.

Returns nullptr on failure.

Definition at line 322 of file TVirtualConverter.cxx.

323 {
324  TClass* cl = gROOT->GetClass (id);
325  if (cl) return cl;
326 
327  // This may fail if the dictionary hasn't been loaded yet,
328  // since we can auto-load only on the name.
329  // Make some attempt to get a name from the type_info.
330  const char* name = id.name();
331  cl = gROOT->GetClass (name);
332  if (cl) return cl;
333 
334  const char* n2 = name;
335  while (isdigit(*n2))
336  ++n2;
337  cl = gROOT->GetClass (n2);
338  if (cl) return cl;
339 
340  int errorCode = 0;
341  char* demname = nullptr;
342  {
343  // Protect against data race inside TClassEdit.
344  // https://github.com/root-project/root/issues/10353
345  // Should be fixed in root 6.26.02.
346  R__WRITE_LOCKGUARD(ROOT::gCoreMutex);
347  demname = TClassEdit::DemangleTypeIdName (id, errorCode);
348  }
349  if (demname) {
350  cl = gROOT->GetClass (demname);
351  free (demname);
352  }
353  return cl;
354 }

Member Data Documentation

◆ fCheckSum

UInt_t TVirtualConverter::fCheckSum
privateinherited

The declared checksum.

Definition at line 261 of file TVirtualConverter.h.

◆ fOldLast

int TVirtualConverter::fOldLast
privateinherited

Used by CheckStreamInfos: the length of the streamerinfo list that we saw on the last CheckStreamInfos call.

Definition at line 265 of file TVirtualConverter.h.

◆ fPersClass

TClass* TVirtualConverter::fPersClass
privateinherited

The declared persistent class.

Definition at line 258 of file TVirtualConverter.h.

◆ fPersObj

void* TVirtualConverter::fPersObj
protectedinherited

The temporary persistent object instance, used for conversions (in non-split mode).

Definition at line 271 of file TVirtualConverter.h.

◆ fTransClass

TClass* TVirtualConverter::fTransClass
privateinherited

The declared transient class.

Definition at line 255 of file TVirtualConverter.h.


The documentation for this class was generated from the following files:
TVirtualConverter::fOldLast
int fOldLast
Used by CheckStreamInfos: the length of the streamerinfo list that we saw on the last CheckStreamInfo...
Definition: TVirtualConverter.h:265
TVirtualConverter::fCheckSum
UInt_t fCheckSum
The declared checksum.
Definition: TVirtualConverter.h:261
TVirtualConverter::fTransClass
TClass * fTransClass
The declared transient class.
Definition: TVirtualConverter.h:255
TVirtualConverter::fPersObj
void * fPersObj
The temporary persistent object instance, used for conversions (in non-split mode).
Definition: TVirtualConverter.h:271
TVirtualConverter::CheckClasses
void CheckClasses()
Helper to check that the classes have been defined properly.
Definition: TVirtualConverter.cxx:188
TVirtualConverter::CheckStreamInfos
void CheckStreamInfos()
Helper to allow for automatic schema evolution for persistent classes.
Definition: TVirtualConverter.cxx:368
TVirtualConverter::fPersClass
TClass * fPersClass
The declared persistent class.
Definition: TVirtualConverter.h:258
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
plotBeamSpotMon.b
b
Definition: plotBeamSpotMon.py:76
python.PyAthena.v
v
Definition: PyAthena.py:154
get_generator_info.version
version
Definition: get_generator_info.py:33
TVirtualConverter::NewPersObj
virtual void * NewPersObj()
Create a new instance of the persistent class.
Definition: TVirtualConverter.cxx:250
L1Topo::Error
Error
The different types of error that can be flagged in the L1TopoRDO.
Definition: Error.h:16
python.PyAthena.obj
obj
Definition: PyAthena.py:132
TVirtualConverter::ConvertVoid
virtual void ConvertVoid(void *transobj, const void *persobj)=0
Do the conversion.
dq_make_web_display.cl
cl
print [x.__class__ for x in toList(dqregion.getSubRegions()) ]
Definition: dq_make_web_display.py:25