ATLAS Offline Software
Loading...
Searching...
No Matches
TauJetContainer_p1_old_cnv Class Reference

#include <TauJetContainer_p1_old_cnv.h>

Inheritance diagram for TauJetContainer_p1_old_cnv:
Collaboration diagram for TauJetContainer_p1_old_cnv:

Public Member Functions

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

Static Public Member Functions

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

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.

Protected Attributes

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

Private Member Functions

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

Private Attributes

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

Detailed Description

Definition at line 16 of file TauJetContainer_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}
TClass * fPersClass
The declared persistent class.
TClass * fTransClass
The declared transient class.
Error
The different types of error that can be flagged in the L1TopoRDO.
Definition Error.h:16

◆ 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}
int fOldLast
Used by CheckStreamInfos: the length of the streamerinfo list that we saw on the last CheckStreamInfo...

◆ Convert()

void TauJetContainer_p1_old_cnv::Convert ( TauJetContainer_p1 * transobj,
const TauJetContainer_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< TauJetContainer_p1, TauJetContainer_p1_old >.

Definition at line 8 of file TauJetContainer_p1_old_cnv.cxx.

10{
11 newobj->clear();
12 size_t n = oldobj->m_momenta.size();
13 newobj->resize (n);
14 for (size_t i = 0; i < n; i++)
15 {
16 TauJet_p1& tau = (*newobj)[i];
17 tau.m_momentum = oldobj->m_momenta[i];
18 tau.m_particleBase = oldobj->m_particles[i];
19 tau.m_cluster = oldobj->m_clusters[i];
20 tau.m_tracks = oldobj->m_tracks[i];
21 //tau.m_cellCluster = XXX;
22 //tau.m_tauDetails = xxx;
23
24 tau.m_flags |= 1;
25 tau.m_vetoFlags = 0;
26
27 typedef std::pair<int, double> ppair;
28 const std::vector<double>& pold = oldobj->m_parameters[i];
29 std::vector<ppair>& pnew = tau.m_params;
30 if (oldobj->m_authors[i] == TauJetParameters::tauRec) {
31 tau.m_flags |= 0x04;
32 pnew.push_back(ppair(TauJetParameters::etHadCalib, pold[ 0]));
33 pnew.push_back(ppair(TauJetParameters::etEMCalib, pold[ 1]));
34 pnew.push_back(ppair(TauJetParameters::emRadius, pold[ 2]));
35 pnew.push_back(ppair(TauJetParameters::isolationFraction, pold[ 3]));
36 pnew.push_back(ppair(TauJetParameters::centralityFraction, pold[ 4]));
37 pnew.push_back(ppair(TauJetParameters::stripWidth2, pold[ 5]));
38 pnew.push_back(ppair(TauJetParameters::nStripCells, pold[ 6]));
39 pnew.push_back(ppair(TauJetParameters::logLikelihoodRatio, pold[ 7]));
40 pnew.push_back(ppair(TauJetParameters::lowPtTauJetDiscriminant,pold[8]));
41 pnew.push_back(ppair(TauJetParameters::lowPtTauEleDiscriminant,pold[9]));
42 pnew.push_back(ppair(TauJetParameters::tauJetNeuralnetwork, pold[10]));
43 pnew.push_back(ppair(TauJetParameters::tauENeuralNetwork, pold[11]));
44
45 }
46 else if (oldobj->m_authors[i] == TauJetParameters::tau1P3P) {
47 tau.m_flags |= 0x08;
48 const std::vector<double>& pold = oldobj->m_parameters[i];
49 pnew.push_back(ppair(TauJetParameters::etHadCalib, pold[ 0] ));
50 pnew.push_back(ppair(TauJetParameters::etEMCalib, pold[ 1] ));
51 pnew.push_back(ppair(TauJetParameters::emRadius, pold[ 2] ));
52 pnew.push_back(ppair(TauJetParameters::isolationFraction, pold[ 3] ));
53 pnew.push_back(ppair(TauJetParameters::centralityFraction, pold[ 4] ));
54 pnew.push_back(ppair(TauJetParameters::stripWidth2, pold[ 5] ));
55 pnew.push_back(ppair(TauJetParameters::nStripCells, pold[ 6] ));
56 pnew.push_back(ppair(TauJetParameters::logLikelihoodRatio, pold[ 7] ));
57 pnew.push_back(ppair(TauJetParameters::annularIsolationFraction,pold[8]));
58 pnew.push_back(ppair(TauJetParameters::etCaloAtEMScale, pold[ 9] ));
59 pnew.push_back(ppair(TauJetParameters::etChargedHadCells, pold[10] ));
60 pnew.push_back(ppair(TauJetParameters::etOtherEMCells, pold[11] ));
61 pnew.push_back(ppair(TauJetParameters::etOtherHadCells, pold[12] ));
62 pnew.push_back(ppair(TauJetParameters::discriminant, pold[13] ));
63 }
64 }
65}
ParticleBase_p1 m_particleBase
Definition TauJet_p1.h:38
P4EEtaPhiM_p1 m_momentum
Definition TauJet_p1.h:37
unsigned long m_vetoFlags
Definition TauJet_p1.h:48
ElementLinkIntVector_p1 m_tracks
Definition TauJet_p1.h:42
std ::vector< std ::pair< int, double > > m_params
Definition TauJet_p1.h:51
ElementLinkInt_p1 m_cluster
Definition TauJet_p1.h:39
unsigned char m_flags
Definition TauJet_p1.h:44

◆ ConvertVoid()

virtual void TVirtualConverter_T< TauJetContainer_p1, TauJetContainer_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}
UInt_t fCheckSum
The declared checksum.

◆ 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)
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.
300 ConvertVoid (obj, fPersObj);
301}
virtual void * NewPersObj()
Create a new instance of the persistent class.
void CheckStreamInfos()
Helper to allow for automatic schema evolution for persistent classes.
virtual void ConvertVoid(void *transobj, const void *persobj)=0
Do the conversion.
void * fPersObj
The temporary persistent object instance, used for conversions (in non-split mode).

◆ 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}
void CheckClasses()
Helper to check that the classes have been defined properly.

◆ 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}
cl
print [x.__class__ for x in toList(dqregion.getSubRegions()) ]

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: