Skip to content

Commit b77935f

Browse files
committed
Add atlas experiment type
1 parent d2a318c commit b77935f

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

schemas/ispyb/lookups.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,7 @@ INSERT INTO `ExperimentType` (`experimentTypeId`, `name`, `proposalType`, `activ
391391
(41,'SSX-Chip','mx',1),
392392
(42,'SSX-Jet','mx',1),
393393
(43,'Metal ID','mx',1);
394+
(44,'Atlas','em',1);
394395
/*!40000 ALTER TABLE `ExperimentType` ENABLE KEYS */;
395396

396397
/*!40000 ALTER TABLE `InspectionType` DISABLE KEYS */;
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2025_02_27_ExperimentType_atlas.sql', 'ONGOING');
2+
3+
ALTER TABLE DataCollectionGroup
4+
MODIFY experimentType enum('SAD','SAD - Inverse Beam','OSC','Collect - Multiwedge','MAD','Helical','Multi-positional','Mesh',
5+
'Burn','MAD - Inverse Beam','Characterization','Dehydration','tomo','experiment','EM','PDF','PDF+Bragg','Bragg',
6+
'single particle','Serial Fixed','Serial Jet','Standard','Time Resolved','Diamond Anvil High Pressure','Custom','XRF map',
7+
'Energy scan','XRF spectrum','XRF map xas','Mesh3D','Screening','Still','SSX-Chip','SSX-Jet', 'Metal ID', 'Atlas')
8+
DEFAULT NULL
9+
COMMENT 'Standard: Routine structure determination experiment. Time Resolved: Investigate the change of a system over time. Custom: Special or non-standard data collection.';
10+
11+
INSERT INTO ExperimentType (
12+
experimentTypeId, name, proposalType, active
13+
) VALUES (
14+
44, 'Atlas', 'em', 1
15+
);
16+
17+
UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2025_02_27_ExperimentType_atlas.sql';

0 commit comments

Comments
 (0)