Index

src/managers/ui-manager/index.ts

defaultAnimationPresets
Type : AnimationPreset[]
Default value : [ { name: 'Cavern to ID', positions: [ { position: [66388.95051168812, 5264.228603228927, -46910.7848593543], duration: 1000, }, { position: [12834.18729094943, 677.7571205763458, 135.68755273443463], duration: 2000, }, { position: [312.02688693297375, 25.884223757326, 270.10019006776236], duration: 3500, }, { position: [263.3640855132258, 19.874838262525053, -318.16541790248885], duration: 3000, }, { position: [5534.140362338047, 234.03507981484574, -2933.619479808285], duration: 2000, }, { position: [2681.277288705242, 646.5795158318147, 5628.5248735111745], duration: 1000, }, { position: [-6062.586283740076, 790.5876682946184, 1381.1675900848818], duration: 1000, }, { position: [-1766.7693725879053, 1007.1048030984678, -5928.901341784575], duration: 1000, }, { position: [12814.982506255355, 2516.987185037266, -22891.902734328327], duration: 1000, }, ], animateEventAfterInterval: 5000, collisionDuration: 6000, }, ]

If animation presets not passed in configuration, we will use this.

src/helpers/constants.ts

EVENT_DATA_TYPE_COLORS
Type : object
Default value : { Hits: new Color(0xff0000), Tracks: new Color(0xff0000), Jets: new Color(0x2194ce), CaloClusters: new Color(0xffd166), MuonChambers: new Color(0xff0000), Vertices: new Color(0xffd166), MissingEnergy: new Color(0xffffff), PlanarCaloCells: new Color(0xfff69a), }

Colors of different event data types.

src/helpers/browser-storage.ts

getFromLocalStorage
Default value : (item: string) => { try { return localStorage.getItem(item); } catch (exception) { console.warn('Exception in localStorage', exception); } }

Get an item from local storage.

setToLocalStorage
Default value : (item: string, value: string) => { try { localStorage.setItem(item, value); } catch (exception) { console.warn('Exception in localStorage', exception); } }

Set item to local storage.

src/helpers/labels.ts

getLabelTitle
Default value : ( eventDataType: string, collection: string, index: string | number, ) => `${eventDataType} > ${collection} > ${index}`

Get title of the label.

src/helpers/file.ts

loadFile
Default value : ( onFileRead: (data: string) => void, contentType: string = 'application/json', ) => { // Create a mock input file element and use that to read the file const inputFile = document.createElement('input'); document.body.appendChild(inputFile); inputFile.type = 'file'; inputFile.accept = contentType; inputFile.onclick = (e: any) => { e.target.value = ''; }; inputFile.addEventListener('invalid', (e) => { console.log(JSON.stringify(e)); }); const fileSelected = (e: any) => { const configFile = e.target?.files[0]; const reader = new FileReader(); reader.onload = (e) => { if (e.target && e.target.result) { onFileRead?.(e.target.result.toString()); } inputFile.remove(); }; reader.readAsText(configFile); }; inputFile.oninput = fileSelected; // inputFile.onchange = fileSelected; inputFile.click(); }

Load a file from user by mocking an input element.

saveFile
Default value : ( data: string, fileName: string, contentType: string = 'application/json', ) => { const blob = new Blob([data], { type: contentType }); const tempAnchor = document.createElement('a'); tempAnchor.style.display = 'none'; tempAnchor.href = URL.createObjectURL(blob); tempAnchor.download = fileName; tempAnchor.click(); tempAnchor.remove(); }

Save and download file with the given data.

src/managers/url-options-manager.ts

phoenixURLOptions
Type : object
Default value : { file: '', type: '', config: '', hideWidgets: false, embed: false, }

Model for Phoenix URL options.

src/helpers/zip.ts

readZipFile
Default value : async (file: File | ArrayBuffer) => { const archive = new JSZip(); const filesWithData: { [fileName: string]: string } = {}; await archive.loadAsync(file); for (const filePath in archive.files) { const fileData = (await archive.file(filePath)?.async('string')) ?? 'Unable to read file'; filesWithData[filePath] = fileData; } return filesWithData; }

Read a zip file and return its contents as an object.

src/loaders/objects/tracks.ts

tracks_frag
Default value : [ 'uniform float progress;', 'varying vec3 v_color;', 'varying float v_counter;', 'flat varying int v_track_id;', 'void main() {', ' if (v_counter > progress) discard;', ' gl_FragColor = vec4(v_color, 1.0);', '}', ].join('\n')

Custom fragment shadre for track.

tracks_vert
Default value : [ 'attribute vec3 previous;', 'attribute vec3 next;', 'attribute int track_id;', 'attribute float side;', 'attribute vec3 color;', 'attribute float counter;', 'varying vec3 v_color;', 'varying float v_counter;', 'flat varying int v_track_id;', 'uniform vec2 resolution;', 'uniform float lineWidth;', 'void main() {', ' vec2 aspect = vec2(resolution.x / resolution.y, 1.0);', '', ' v_color = color;', ' v_counter = counter;', ' v_track_id = track_id;', '', ' mat4 m = projectionMatrix * modelViewMatrix;', ' vec4 finalPosition = m * vec4(position, 1.0);', ' vec4 prevPos = m * vec4(previous, 1.0);', ' vec4 nextPos = m * vec4(next, 1.0);', '', ' vec2 curP = finalPosition.xy / finalPosition.w * aspect;', ' vec2 prevP = prevPos.xy / prevPos.w * aspect;', ' vec2 nextP = nextPos.xy / nextPos.w * aspect;', '', ' vec2 dir;', ' if (curP == prevP) dir = normalize(nextP - curP);', ' else if (curP == nextP) dir = normalize(curP - prevP);', ' else dir = normalize(curP - prevP);', '', ' vec2 normal = vec2(-dir.y, dir.x);', ' normal.xy *= .5 * lineWidth;', ' normal.x /= aspect.x;', ' normal.xy *= finalPosition.w * 0.001;', ' finalPosition.xy += normal.xy * side;', ' gl_Position = finalPosition;', '}', ].join('\n')

Custom vertex shader for tracks.

results matching ""

    No results matching ""