src/loaders/trackml-loader.ts
PhoenixLoader for processing and loading an event from TrackML.
Properties |
|
Methods |
|
constructor()
|
Defined in src/loaders/trackml-loader.ts:12
|
Instiantiate the TrackML loader. |
Private hitData |
Type : any
|
Defined in src/loaders/trackml-loader.ts:8
|
Data containing Hits. |
Private particleData |
Type : any
|
Defined in src/loaders/trackml-loader.ts:10
|
Data containing Particles. |
Private truthData |
Type : any
|
Defined in src/loaders/trackml-loader.ts:12
|
Data containing truthy Particles. |
Protected eventData |
Type : any
|
Inherited from
PhoenixLoader
|
Defined in
PhoenixLoader:27
|
Event data processed by the loader. |
Private graphicsLibrary |
Type : ThreeManager
|
Inherited from
PhoenixLoader
|
Defined in
PhoenixLoader:23
|
ThreeService to perform three.js related functions. |
Protected labelsObject |
Type : literal type
|
Default value : {}
|
Inherited from
PhoenixLoader
|
Defined in
PhoenixLoader:33
|
Object containing event object labels. |
Protected loadingManager |
Type : LoadingManager
|
Inherited from
PhoenixLoader
|
Defined in
PhoenixLoader:29
|
Loading manager for loadable resources |
Protected stateManager |
Type : StateManager
|
Inherited from
PhoenixLoader
|
Defined in
PhoenixLoader:31
|
Loading manager for loadable resources |
Private ui |
Type : UIManager
|
Inherited from
PhoenixLoader
|
Defined in
PhoenixLoader:25
|
UIService to perform UI related functions. |
Public getEventData | ||||||||
getEventData(eventNum: string)
|
||||||||
Defined in src/loaders/trackml-loader.ts:101
|
||||||||
Get structured event data from the processed Hits, Truth data and Particles.
Parameters :
Returns :
any
|
Public processHits | ||||||||
processHits(hits: any)
|
||||||||
Defined in src/loaders/trackml-loader.ts:28
|
||||||||
Process Hits to format and store them.
Parameters :
Returns :
void
|
Public processParticles | ||||||||
processParticles(particles: any)
|
||||||||
Defined in src/loaders/trackml-loader.ts:48
|
||||||||
Process Particles to format and store them.
Parameters :
Returns :
void
|
Public processTruth | ||||||||
processTruth(truth: any)
|
||||||||
Defined in src/loaders/trackml-loader.ts:76
|
||||||||
Process Truth data to format and store it.
Parameters :
Returns :
void
|
Private addCollection | ||||||||||||||||||||||||||||
addCollection(objectCollection: any, collectionName: string, getObject: (object: any,typeName: string) => void, typeName: string, objectGroup: Group, concatonateObjs: boolean)
|
||||||||||||||||||||||||||||
Inherited from
PhoenixLoader
|
||||||||||||||||||||||||||||
Defined in
PhoenixLoader:516
|
||||||||||||||||||||||||||||
Adds to the event display all the objects inside a collection.
Parameters :
Returns :
void
|
Public addLabelToEventObject | ||||||||||||||||
addLabelToEventObject(label: string, collection: string, indexInCollection: number)
|
||||||||||||||||
Inherited from
PhoenixLoader
|
||||||||||||||||
Defined in
PhoenixLoader:733
|
||||||||||||||||
Add label of event object to the labels object.
Parameters :
Returns :
string
A unique label ID string. |
Protected addObjectType | |||||||||||||||||||||||||||||||||||
addObjectType(object: any, getObject: any, typeName: string, concatonateObjs: boolean, cuts?: Cut[], extendEventDataTypeUI?: (typeFolder?: GUI,typeFolderPM?: PhoenixMenuNode) => void)
|
|||||||||||||||||||||||||||||||||||
Inherited from
PhoenixLoader
|
|||||||||||||||||||||||||||||||||||
Defined in
PhoenixLoader:448
|
|||||||||||||||||||||||||||||||||||
Adds to the event display all collections of a given object type.
Parameters :
Returns :
void
|
Public addScaleOptions | ||||||||||||||||
addScaleOptions(configKey: string, configLabel: string, scaleFunction: (value: number) => void)
|
||||||||||||||||
Inherited from
PhoenixLoader
|
||||||||||||||||
Defined in
PhoenixLoader:770
|
||||||||||||||||
Get function to add options to scale event object type by.
Parameters :
Function which adds scale options to Phoenix menu and dat.GUI menu. |
Public buildEventData | ||||||||||||||||||||
buildEventData(eventData: any, graphicsLibrary: ThreeManager, ui: UIManager, infoLogger: InfoLogger)
|
||||||||||||||||||||
Inherited from
PhoenixLoader
|
||||||||||||||||||||
Defined in
PhoenixLoader:51
|
||||||||||||||||||||
Takes an object that represents ONE event and takes care of adding the different objects to the graphics library and the UI controls.
Parameters :
Returns :
void
|
Public getCollection | ||||||||
getCollection(collectionName: string)
|
||||||||
Inherited from
PhoenixLoader
|
||||||||
Defined in
PhoenixLoader:127
|
||||||||
Get the collection with the given collection name from the event data.
Parameters :
Returns :
any
An object containing the collection. |
Public getCollections |
getCollections()
|
Inherited from
PhoenixLoader
|
Defined in
PhoenixLoader:103
|
Get list of collections in the event data.
Returns :
string[]
List of all collection names. |
Protected getCompound | |||||||||||||||||||||||||
getCompound(params: any, name: string, objectIsTrack: boolean, objectIsCluster: boolean)
|
|||||||||||||||||||||||||
Inherited from
PhoenixLoader
|
|||||||||||||||||||||||||
Defined in
PhoenixLoader:581
|
|||||||||||||||||||||||||
Process the compound object (e.g. Muon, Electron, Photon) from the given parameters and get it as a group. FIXME. This is currently here and not in PhoenixObjects because we need to handle linked objects.
Parameters :
Returns :
Object3D
Muon group containing Clusters and Tracks. |
Protected getCompoundCluster |
getCompoundCluster(params: any, name: string)
|
Inherited from
PhoenixLoader
|
Defined in
PhoenixLoader:571
|
Process the compound object of cluster type (e.g. Photon, ..) from the given parameters and get it as a group.
Returns :
Object3D
|
Protected getCompoundTrack |
getCompoundTrack(params: any, name: string)
|
Inherited from
PhoenixLoader
|
Defined in
PhoenixLoader:565
|
Process the compound object of track type (e.g. Muon, Electron, ..) from the given parameters and get it as a group.
Returns :
Object3D
|
getEventMetadata |
getEventMetadata()
|
Inherited from
PhoenixLoader
|
Defined in
PhoenixLoader:679
|
Get metadata associated to the event (experiment info, time, run, event...).
Returns :
any[]
Metadata of the event. |
Public getEventsList | ||||||||
getEventsList(eventsData: any)
|
||||||||
Inherited from
PhoenixLoader
|
||||||||
Defined in
PhoenixLoader:87
|
||||||||
Get the list of event names from the event data.
Parameters :
Returns :
string[]
List of event names. |
Public getLabelsObject |
getLabelsObject()
|
Inherited from
PhoenixLoader
|
Defined in
PhoenixLoader:759
|
Get the object containing labels.
Returns :
literal type
The labels object. |
Private getObjectTypeCollections | ||||||||
getObjectTypeCollections(object: any)
|
||||||||
Inherited from
PhoenixLoader
|
||||||||
Defined in
PhoenixLoader:551
|
||||||||
Get collection names of a given object type.
Parameters :
Returns :
string[]
List of collection names of an object type (Tracks, Jets, CaloClusters etc.). |
Protected loadObjectTypes | ||||||||
loadObjectTypes(eventData: any)
|
||||||||
Inherited from
PhoenixLoader
|
||||||||
Defined in
PhoenixLoader:148
|
||||||||
Receives an object containing the data from an event and parses it to reconstruct the different collections of physics objects.
Parameters :
Returns :
void
|
import { PhoenixLoader } from './phoenix-loader';
/**
* PhoenixLoader for processing and loading an event from TrackML.
*/
export class TrackmlLoader extends PhoenixLoader {
/** Data containing Hits. */
private hitData: any;
/** Data containing Particles. */
private particleData: any;
/** Data containing truthy Particles. */
private truthData: any;
/**
* Instiantiate the TrackML loader.
*/
constructor() {
super();
this.hitData = [];
this.particleData = [];
this.truthData = {};
}
/**
* Process Hits to format and store them.
* @param hits Hits to be processed.
*/
public processHits(hits: any) {
const data = hits.split('\n');
console.log('Event has this many hits:', data.length);
let values;
// format is: hit_id,x,y,z,volume_id,layer_id,module_id
for (let line = 1; line < data.length; line++) {
values = data[line].split(',');
this.hitData[values[0]] = [
parseFloat(values[1]),
parseFloat(values[2]),
parseFloat(values[3]),
];
}
}
/**
* Process Particles to format and store them.
* @param particles Particles to be processed.
*/
public processParticles(particles: any) {
const data = particles.split('\n');
console.log('Event has this many particles:', data.length);
let values;
// format is: particle_id,vx,vy,vz,px,py,pz,q,nhits
for (let line = 1; line < data.length; line++) {
values = data[line].split(',');
this.particleData.push({
particle_id: parseInt(values[0]),
vertex_pos: [
parseFloat(values[1]),
parseFloat(values[2]),
parseFloat(values[3]),
],
mom: [
parseFloat(values[4]),
parseFloat(values[5]),
parseFloat(values[6]),
],
});
}
}
/**
* Process Truth data to format and store it.
* @param truth Truth data to be processed.
*/
public processTruth(truth: any) {
const data = truth.split('\n');
console.log('Event has this many truth: ', data.length);
let values;
// format is: hit_id,particle_id,tx,ty,tz,tpx,tpy,tpz,weight
for (let line = 1; line < data.length; line++) {
values = data[line].split(',');
this.truthData[values[0]] = [
values[1],
values[2],
values[3],
values[4],
values[5],
values[6],
values[7],
values[8],
];
}
}
/**
* Get structured event data from the processed Hits, Truth data and Particles.
* @param eventNum Event number.
*/
public getEventData(eventNum: string): any {
const eventData = {
eventNumber: eventNum,
runNumber: 0,
Hits: { Reconstructed: [] as any[] },
Tracks: { Particles: [] as any[] },
};
if (this.hitData) {
eventData.Hits.Reconstructed = [] as any[];
let mod = Math.round(this.hitData.length / 5000);
if (mod < 1) {
mod = 1;
}
let count = 0;
for (let i = 1; i < this.hitData.length; i++) {
if (i % mod) {
continue;
}
eventData.Hits.Reconstructed[count++] = [
[this.hitData[i][0], this.hitData[i][1], this.hitData[i][2]],
];
}
}
console.log(
'Will show this many hits',
eventData.Hits.Reconstructed.length,
);
if (this.truthData) {
if (this.particleData) {
for (let i = 0; i < this.particleData.length; i++) {
// Add the relevant data from particle, such as first hit position - we'll add the particle_id because we need it later.
eventData.Tracks.Particles[i] = {
particle_id: this.particleData[i].particle_id,
pos: [this.particleData[i].vertex_pos],
mom: this.particleData[i].mom,
};
// console.log('Just added: ', event_data.Tracks.Particles[i-1]);
}
}
let hitId;
let particleId;
const stepSize = parseInt(String(this.truthData.length / 10));
for (let i = 1; i < this.truthData.length; i++) {
// Now add the truth data - i.e. add the truth hits which match a particle to the particle (unsorted for the moment)
hitId = i;
particleId = parseInt(this.truthData[i][0]);
for (let j = 0; j < eventData.Tracks.Particles.length; j++) {
// console.log(event_data.Tracks.Particles[j]);
if (eventData.Tracks.Particles[j].particle_id === particleId) {
// Found matching particle - add the truth hit position to the particles positions
eventData.Tracks.Particles[j].pos.push([
parseFloat(this.truthData[i][1]),
parseFloat(this.truthData[i][2]),
parseFloat(this.truthData[i][3]),
]);
}
}
if (i % stepSize === 0) {
document.getElementById('info')!.innerHTML =
'Processed ' +
(100 * i) / this.truthData.length +
'% of event data.';
}
}
}
let numParticleStubs = 0;
for (let j = 0; j < eventData.Tracks.Particles.length; j++) {
if (eventData.Tracks.Particles[j].pos.length < 3) {
// console.log ('Track has less than 3 positions');
// console.log(event_data.Tracks.Particles[j]);
numParticleStubs++;
}
}
const events: { [key: string]: any } = {};
events[eventNum] = eventData;
return eventData;
}
}