Skip to main content

A collection of python scripts to access VDaq data.

Project description

AliVATA data analysis

This is a collection of data analysis examples

Python

Data can also be analyzed with python. The philosophy is the same as in C++. There is a AliVATAData class to navigate the data and a AliVATAModule class that contains the data of a given module.

AliVATAData

AliVATADatawill get all the information abou the run type, etc.

If the daa file comes from a ScanRun, AliVATAData will provide a ScanManager via the scan_managermethod and will tell if this is this kind of run with the has_scan method. In principle, the user does not neet to care about the ScanManager unless there is need of getting information about the number of ScanVariables and their definition.

The most important role of it will help creating the iterators that help navigating the data.

  • AliVATADatais itself an iterator that will yield all the events of all the modules ordered by time.
  • create_module_ierator(mid) will return an iterator yielding the data from modiel with ID mid.
  • create_iterator_at_time(T, [mod_ids]) will return an iterator that starts iteratinig at the given daq_time. The data will be restricted to the modules given in the list. If the list is empty, all the modules will provide data.
  • create_iterator_at_event(ievt, [mod_ids]) will create an iterator that starts at the given event number.
  • ScanManager is itself an iterator of ScanPoints. Tnis will be retrived via the AliVATAData.scan_managermethod.
  • create_iterator_at_scan_point(ipoint, [mod_ids]) will create an iterator taht gives all the events in that ScanPoint.

An example of use:

# We open here the file
vdaq_ana = AliVATAData(fname)

#  Go through all the envents
for evt in vdaq_ana:
	# evt contains the data of the event.
	...
	analyze the event
	...
	

If we want to analyze the data of a ScanRun:

# We open here the file
vdaq_ana = AliVATAData(fname)

# loop over the scan points
for ipoint, scP in enumerate(vdaq_ana.scan_iter()):
	point_values.append(scP.values[11])
	
	# loop on all the events of the ScanPoint for module mid
	for evt in vdaq_ana.create_iterator_at_scanpoint(ipoint, mid):
		# evt contains the data of the event
		...
		analyze the data
		...
    

AliVATAModule

AliVATAModulecontains all the information relative to a module. The main role of this object is to analyze the module data.

Python examples.

There are a number or examples to read data with Python.

Command line programs

  • getSpectrum to make a very rough analysis and show the energy distribution.
  • show_data to see the raw data in the file.
  • getFileInfo to get information about the data file (date, no. of events, etc.)

fit-utils.py

Some utilities to fit different distributions.

read_data.py

Shows how to iterate on the data

analyze_data.py

Reads all events in a file and tries to fit something.

data_spectral_analysis.py

Makes an spectral analysis of the calibation data.

hold_delay_scan.py

Example of a ScanRun analysis. Thsi particular one to check the signal variation with Hold Delay parameter.

test_channel_scan.py

Analysis of a channel scan.

show_data.py

Useful to spy the data in a file. Also an interesting example of different iterators.

Vdaq data format

Vdaq stores the data using the HDF5 library. The data in the output file is organized in different blocks: +/header +/modules +/scan

The header is described elsewhere.

The header has an attribute with the definition of the run. The run description contains the type of run, the run number the number of events and the time

The header contains 2 groups

/header/modules

This is a list with the module descriptions. They are encoded as 0xnn0tiii with +nn = number of chips +t = data type +iii = module identifier

/header/run_records

Contains the start of run and end of run records.

The module

The module group has one subgroup per module named with the module ID

/modules/iii

where iii is the module ID.

The module group has the data group where the user defined data format resides and the configuration array that contains an array of integers with the configurations values returned by GenModule::write_config(). Finally, there is the pedestal group that contains:

/modules/iii/pedestals/pedestal - the pedestals /modules/iii/pedestals/noise - the noise

The scan

The scan block has two records, one that defines the scan (/scan/def) and the second that tells when Vdaq changed to the new scan point and the values of the variables.

/scan/def/nevt - number of events per scanpoint /scan/def/nvar - number o variables to scan /scan/def/variables - The variable descriptions (type, from, to)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vdaq_ana-0.8.5.dev1.tar.gz (29.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vdaq_ana-0.8.5.dev1-py3-none-any.whl (31.1 kB view details)

Uploaded Python 3

File details

Details for the file vdaq_ana-0.8.5.dev1.tar.gz.

File metadata

  • Download URL: vdaq_ana-0.8.5.dev1.tar.gz
  • Upload date:
  • Size: 29.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for vdaq_ana-0.8.5.dev1.tar.gz
Algorithm Hash digest
SHA256 79302b3239f959a1ad757b0a7d0851ff9722bea95d03a308fff3ec23f0573f85
MD5 f553d3f7d8cf93ce5a5e05e5553ef7bc
BLAKE2b-256 fd7ba1922839c3aa38db60952c7bb47f8da91c8db828cf5e9744d7e9bd412a63

See more details on using hashes here.

File details

Details for the file vdaq_ana-0.8.5.dev1-py3-none-any.whl.

File metadata

  • Download URL: vdaq_ana-0.8.5.dev1-py3-none-any.whl
  • Upload date:
  • Size: 31.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for vdaq_ana-0.8.5.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 04f5051cf80b4a80d40a6f73da3ae4d78400e7f2825118d1ca71769ce8c52c08
MD5 d0336ecb05c0b902487dbb3255efcc2e
BLAKE2b-256 b906bdb6401bb393ea89021f039af58a96be4e611b7b4fd478e30e9371e711f6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page